// ------------------------------------------------------------------------- // ----- R3BPsp source file ----- // ----- Created 26/03/09 by D.Bertini ----- // ------------------------------------------------------------------------- #include #include "R3BPsp.h" #include "R3BGeoPsp.h" #include "R3BPspPoint.h" // #include "R3BGeoPspPar.h" #include "R3BMCStack.h" #include "FairGeoInterface.h" #include "FairGeoLoader.h" #include "FairGeoNode.h" #include "FairGeoRootBuilder.h" #include "FairRootManager.h" #include "FairRuntimeDb.h" #include "FairRun.h" #include "FairVolume.h" #include "TClonesArray.h" #include "TGeoMCGeometry.h" #include "TParticle.h" #include "TVirtualMC.h" #include "TObjArray.h" // includes for modeling #include "TGeoManager.h" #include "TParticle.h" #include "TVirtualMC.h" #include "TGeoMatrix.h" #include "TGeoMaterial.h" #include "TGeoMedium.h" #include "TGeoBBox.h" #include "TGeoPara.h" #include "TGeoPgon.h" #include "TGeoSphere.h" #include "TGeoArb8.h" #include "TGeoCone.h" #include "TGeoBoolNode.h" #include "TGeoCompositeShape.h" // ----- Default constructor ------------------------------------------- R3BPsp::R3BPsp() : R3BDetector("R3BPsp", kTRUE, kPSP) { ResetParameters(); fPspCollection = new TClonesArray("R3BPspPoint"); fPosIndex = 0; kGeoSaved = kFALSE; flGeoPar = new TList(); flGeoPar->SetName( GetName()); fVerboseLevel = 1; } // ------------------------------------------------------------------------- // ----- Standard constructor ------------------------------------------ R3BPsp::R3BPsp(const char* name, Bool_t active) : R3BDetector(name, active, kPSP) { ResetParameters(); fPspCollection = new TClonesArray("R3BPspPoint"); fPosIndex = 0; kGeoSaved = kFALSE; flGeoPar = new TList(); flGeoPar->SetName( GetName()); fVerboseLevel = 1; } // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- R3BPsp::~R3BPsp() { if ( flGeoPar ) delete flGeoPar; if (fPspCollection) { fPspCollection->Delete(); delete fPspCollection; } } // ------------------------------------------------------------------------- void R3BPsp::Initialize() { FairDetector::Initialize(); LOG(INFO) << "R3BPsp: initialisation" << FairLogger::endl; LOG(DEBUG) << "R3BPsp: Vol. (McId) " << gMC->VolId("PSP1Log") << FairLogger::endl; } // ----- Public method ProcessHits -------------------------------------- Bool_t R3BPsp::ProcessHits(FairVolume* vol) { // 2 Simple Det PLane // get Info from DCH planes Int_t copyNo = -1; Int_t planeNr = -1; // Get the Geo info from MC Point gMC->CurrentVolID(copyNo); gMC->CurrentVolOffID(1,planeNr); if ( gMC->IsTrackEntering() ) { fELoss = 0.; //fTime = gMC->TrackTime() * 1.0e09; //fLength = gMC->TrackLength(); fTime_in = gMC->TrackTime() * 1.0e09; fLength_in = gMC->TrackLength(); gMC->TrackPosition(fPosIn); gMC->TrackMomentum(fMomIn); } // Sum energy loss for all steps in the active volume fELoss += gMC->Edep(); // Set additional parameters at exit of active volume. Create R3BPspPoint. if ( gMC->IsTrackExiting() || gMC->IsTrackStop() || gMC->IsTrackDisappeared() ) { fTrackID = gMC->GetStack()->GetCurrentTrackNumber(); fVolumeID = vol->getMCid(); gMC->TrackPosition(fPosOut); gMC->TrackMomentum(fMomOut); if (fELoss == 0. ) return kFALSE; fTime_out = gMC->TrackTime() * 1.0e09; //also in case particle is stopped in detector, or decays... fLength_out = gMC->TrackLength(); fTime = (fTime_out+fTime_in)/2.; fLength = (fLength_out+fLength_in)/2.; if (gMC->IsTrackExiting()) { const Double_t* oldpos; const Double_t* olddirection; Double_t newpos[3]; Double_t newdirection[3]; Double_t safety; gGeoManager->FindNode(fPosOut.X(),fPosOut.Y(),fPosOut.Z()); oldpos = gGeoManager->GetCurrentPoint(); olddirection = gGeoManager->GetCurrentDirection(); for (Int_t i=0; i<3; i++){ newdirection[i] = -1*olddirection[i]; } gGeoManager->SetCurrentDirection(newdirection); // TGeoNode *bla = gGeoManager->FindNextBoundary(2); safety = gGeoManager->GetSafeDistance(); gGeoManager->SetCurrentDirection(-newdirection[0],-newdirection[1],-newdirection[2]); for (Int_t i=0; i<3; i++){ newpos[i] = oldpos[i] - (3*safety*olddirection[i]); } fPosOut.SetX(newpos[0]); fPosOut.SetY(newpos[1]); fPosOut.SetZ(newpos[2]); } AddHit(fTrackID, fVolumeID, planeNr , TVector3(fPosIn.X(), fPosIn.Y(), fPosIn.Z()), TVector3(fPosOut.X(), fPosOut.Y(), fPosOut.Z()), TVector3(fMomIn.Px(), fMomIn.Py(), fMomIn.Pz()), TVector3(fMomOut.Px(), fMomOut.Py(), fMomOut.Pz()), fTime, fLength, fELoss); // Increment number of PspPoints for this track R3BStack* stack = (R3BStack*) gMC->GetStack(); stack->AddPoint(kPSP); ResetParameters(); } return kTRUE; } // ----- Public method EndOfEvent ----------------------------------------- void R3BPsp::BeginEvent() { } // ----- Public method EndOfEvent ----------------------------------------- void R3BPsp::EndOfEvent() { if (fVerboseLevel) Print(); fPspCollection->Clear(); ResetParameters(); } // ---------------------------------------------------------------------------- // ----- Public method Register ------------------------------------------- void R3BPsp::Register() { FairRootManager::Instance()->Register("PSPPoint", GetName(), fPspCollection, kTRUE); } // ---------------------------------------------------------------------------- // ----- Public method GetCollection -------------------------------------- TClonesArray* R3BPsp::GetCollection(Int_t iColl) const { if (iColl == 0) return fPspCollection; else return NULL; } // ---------------------------------------------------------------------------- // ----- Public method Print ---------------------------------------------- void R3BPsp::Print(Option_t *option) const { Int_t nHits = fPspCollection->GetEntriesFast(); LOG(INFO) << "R3BPsp: " << nHits << " points registered in this event" << FairLogger::endl; } // ---------------------------------------------------------------------------- // ----- Public method Reset ---------------------------------------------- void R3BPsp::Reset() { fPspCollection->Clear(); ResetParameters(); } // ---------------------------------------------------------------------------- // ----- Public method CopyClones ----------------------------------------- void R3BPsp::CopyClones(TClonesArray* cl1, TClonesArray* cl2, Int_t offset) { Int_t nEntries = cl1->GetEntriesFast(); LOG(INFO) << "R3BPsp: " << nEntries << " entries to add" << FairLogger::endl; TClonesArray& clref = *cl2; R3BPspPoint* oldpoint = NULL; for (Int_t i=0; iAt(i); Int_t index = oldpoint->GetTrackID() + offset; oldpoint->SetTrackID(index); new (clref[fPosIndex]) R3BPspPoint(*oldpoint); fPosIndex++; } LOG(INFO) << "R3BPsp: " << cl2->GetEntriesFast() << " merged entries" << FairLogger::endl; } // ----- Private method AddHit -------------------------------------------- R3BPspPoint* R3BPsp::AddHit(Int_t trackID, Int_t detID, Int_t plane , TVector3 posIn, TVector3 posOut, TVector3 momIn, TVector3 momOut, Double_t time, Double_t length, Double_t eLoss) { TClonesArray& clref = *fPspCollection; Int_t size = clref.GetEntriesFast(); if (fVerboseLevel>1) { LOG(INFO) << "R3BPsp: Adding Point at (" << posIn.X() << ", " << posIn.Y() << ", " << posIn.Z() << ") cm, detector " << detID << ", track " << trackID << ", energy loss " << eLoss*1e06 << " keV" << FairLogger::endl; } return new(clref[size]) R3BPspPoint(trackID, detID, plane, posIn, posOut, momIn, momOut, time, length, eLoss); } // ----- Public method ConstructGeometry ---------------------------------- void R3BPsp::ConstructGeometry() { TString fileName = GetGeometryFileName(); if(fileName.EndsWith(".root")) { LOG(INFO) << "Constructing PSP geometry from ROOT file " << fileName.Data() << FairLogger::endl; ConstructRootGeometry(); } else { LOG(FATAL) << "PSP geometry file is not specified" << FairLogger::endl; exit(1); } } Bool_t R3BPsp::CheckIfSensitive(std::string name) { if(TString(name).Contains("PSP1Log") || TString(name).Contains("PSP2Log") || TString(name).Contains("PSP3Log")) { return kTRUE; } return kFALSE; } ClassImp(R3BPsp)