CMS 3D CMS Logo

TimingSD.cc
Go to the documentation of this file.
1 // File: TimingSD.cc
3 // Date: 02.2006
4 // Description: Sensitive Detector class for Timing
5 // Modifications:
7 
9 
13 
15 
19 
20 #include "G4Step.hh"
21 #include "G4StepPoint.hh"
22 #include "G4Track.hh"
23 #include "G4VPhysicalVolume.hh"
24 #include "G4SDManager.hh"
25 #include "G4VProcess.hh"
26 
27 #include "G4PhysicalConstants.hh"
28 #include "G4SystemOfUnits.hh"
29 
30 #include <vector>
31 #include <iostream>
32 
33 //#define debug
34 
35 static const float invgev = 1.0 / CLHEP::GeV;
36 static const double invns = 1.0 / CLHEP::nanosecond;
37 static const double invdeg = 1.0 / CLHEP::deg;
38 
39 //-------------------------------------------------------------------
41  const edm::EventSetup& es,
42  const SensitiveDetectorCatalog& clg,
43  edm::ParameterSet const& p,
44  const SimTrackManager* manager)
45  : SensitiveTkDetector(name, es, clg, p),
46  theManager(manager),
47  theHC(nullptr),
48  currentHit(nullptr),
49  theTrack(nullptr),
50  preStepPoint(nullptr),
51  postStepPoint(nullptr),
52  unitID(0),
53  previousUnitID(0),
54  primID(-2),
55  hcID(-1),
56  tsID(-2),
57  primaryID(0),
58  tSliceID(-1),
59  timeFactor(1.0),
60  energyCut(1.e+9),
61  energyHistoryCut(1.e+9) {
62  slave = new TrackingSlaveSD(name);
64 }
65 
67  delete slave;
68  delete theEnumerator;
69 }
70 
71 void TimingSD::Initialize(G4HCofThisEvent* HCE) {
72  edm::LogVerbatim("TimingSim") << "TimingSD : Initialize called for " << GetName() << " time slice factor "
73  << timeFactor << "\n MC truth cuts in are " << energyCut / CLHEP::GeV << " GeV and "
74  << energyHistoryCut / CLHEP::GeV << " GeV";
75 
76  theHC = new BscG4HitCollection(GetName(), collectionName[0]);
77  if (hcID < 0) {
78  hcID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]);
79  }
80  HCE->AddHitsCollection(hcID, theHC);
81 
82  tsID = -2;
83  primID = -2;
84 }
85 
87  if (val <= 0.0) {
88  return;
89  }
90  timeFactor = val;
91 #ifdef debug
92  edm::LogVerbatim("TimingSim") << "TimingSD : for " << GetName() << " time slice factor is set to " << timeFactor;
93 #endif
94 }
95 
96 void TimingSD::setCuts(double eCut, double historyCut) {
97  if (eCut > 0.) {
98  energyCut = eCut;
99  }
100  if (historyCut > 0.) {
101  energyHistoryCut = historyCut;
102  }
103 #ifdef debug
104  edm::LogVerbatim("TimingSim") << "TimingSD : for " << GetName() << " MC truth cuts in are " << energyCut / CLHEP::GeV
105  << " GeV and " << energyHistoryCut / CLHEP::GeV << " GeV";
106 #endif
107 }
108 
109 bool TimingSD::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
110  edeposit = aStep->GetTotalEnergyDeposit();
111  if (edeposit > 0.f) {
112  getStepInfo(aStep);
113  if (!hitExists(aStep)) {
114  createNewHit(aStep);
115  }
116  }
117  return true;
118 }
119 
120 void TimingSD::getStepInfo(const G4Step* aStep) {
121  preStepPoint = aStep->GetPreStepPoint();
122  postStepPoint = aStep->GetPostStepPoint();
123  hitPointExit = postStepPoint->GetPosition();
125  const G4Track* newTrack = aStep->GetTrack();
126 
127  // neutral particles deliver energy post step
128  // charged particle start deliver energy pre step
129  if (newTrack->GetDefinition()->GetPDGCharge() == 0.0) {
132  tof = (float)(postStepPoint->GetGlobalTime() * invns);
133  } else {
134  hitPoint = preStepPoint->GetPosition();
136  tof = (float)(preStepPoint->GetGlobalTime() * invns);
137  }
138 
139 #ifdef debug
140  double distGlobal =
141  std::sqrt(std::pow(hitPoint.x() - hitPointExit.x(), 2) + std::pow(hitPoint.y() - hitPointExit.y(), 2) +
142  std::pow(hitPoint.z() - hitPointExit.z(), 2));
143  double distLocal = std::sqrt(std::pow(hitPointLocal.x() - hitPointLocalExit.x(), 2) +
146  LogDebug("TimingSim") << "TimingSD:"
147  << "\n Global entry point: " << hitPoint << "\n Global exit point: " << hitPointExit
148  << "\n Global step length: " << distGlobal << "\n Local entry point: " << hitPointLocal
149  << "\n Local exit point: " << hitPointLocalExit << "\n Local step length: " << distLocal;
150  if (std::fabs(distGlobal - distLocal) > 1.e-6) {
151  LogDebug("TimingSim") << "DIFFERENCE IN DISTANCE \n";
152  }
153 #endif
154 
155  incidentEnergy = preStepPoint->GetKineticEnergy();
156 
157  // should MC truth be saved
158  if (newTrack != theTrack) {
159  theTrack = newTrack;
160  TrackInformation* info = nullptr;
161  if (incidentEnergy > energyCut) {
163  info->storeTrack(true);
164  }
166  if (!info) {
168  }
169  info->putInHistory();
170  }
171  }
172 
173  edeposit *= invgev;
176  edepositHAD = 0.f;
177  } else {
178  edepositEM = 0.f;
180  }
181  // time slice is defined for the entry point
182  tSlice = timeFactor * preStepPoint->GetGlobalTime() * invns;
183  tSliceID = (int)tSlice;
184 
185  unitID = setDetUnitId(aStep);
186  primaryID = theTrack->GetTrackID();
187 }
188 
189 bool TimingSD::hitExists(const G4Step* aStep) {
190  if (!currentHit) {
191  return false;
192  }
193 
194  // Update if in the same detector and time-slice
195  if (tSliceID == tsID && unitID == previousUnitID) {
196  updateHit();
197  return true;
198  }
199 
200  //look in the HitContainer whether a hit with the same primID, unitID,
201  //tSliceID already exists:
202 
203  bool found = false;
204  for (int j = 0; j < theHC->entries(); ++j) {
205  BscG4Hit* aHit = (*theHC)[j];
206  if (aHit->getTimeSliceID() == tSliceID && aHit->getUnitID() == unitID) {
207  if (checkHit(aStep, aHit)) {
208  currentHit = aHit;
209  found = true;
210  break;
211  }
212  }
213  }
214  if (found) {
215  updateHit();
216  }
217  return found;
218 }
219 
220 bool TimingSD::checkHit(const G4Step*, BscG4Hit* hit) {
221  // change hit info to fastest primary particle
222  if (tof < hit->getTof()) {
223  hit->setTrackID(primaryID);
224  hit->setIncidentEnergy((float)incidentEnergy);
225  hit->setPabs(float(preStepPoint->GetMomentum().mag()) * invgev);
226  hit->setTof(tof);
227  hit->setParticleType(theTrack->GetDefinition()->GetPDGEncoding());
228 
229  float ThetaAtEntry = (float)(hitPointLocal.theta() * invdeg);
230  float PhiAtEntry = (float)(hitPointLocal.phi() * invdeg);
231 
232  hit->setThetaAtEntry(ThetaAtEntry);
233  hit->setPhiAtEntry(PhiAtEntry);
234 
235  hit->setEntry(hitPoint);
238 
239  hit->setParentId(theTrack->GetParentID());
240  hit->setProcessId(theEnumerator->processId(theTrack->GetCreatorProcess()));
241 
242  hit->setVertexPosition(theTrack->GetVertexPosition());
243  }
244  return true;
245 }
246 
248  if (primID < 0)
249  return;
250  if (hit == nullptr) {
251  edm::LogWarning("BscSim") << "BscSD: hit to be stored is NULL !!";
252  return;
253  }
254 
255  theHC->insert(hit);
256 }
257 
258 void TimingSD::createNewHit(const G4Step* aStep) {
259 #ifdef debug
260  const G4VPhysicalVolume* currentPV = preStepPoint->GetPhysicalVolume();
261  edm::LogVerbatim("TimingSim") << "TimingSD CreateNewHit for " << GetName() << " PV " << currentPV->GetName()
262  << " PVid = " << currentPV->GetCopyNo() << " Unit " << unitID << "\n primary "
263  << primaryID << " Tof(ns)= " << tof << " time slice " << tSliceID
264  << " E(GeV)= " << incidentEnergy << " trackID " << theTrack->GetTrackID() << " "
265  << theTrack->GetDefinition()->GetParticleName() << " parentID "
266  << theTrack->GetParentID();
267 
268  if (theTrack->GetCreatorProcess() != nullptr) {
269  edm::LogVerbatim("TimingSim") << theTrack->GetCreatorProcess()->GetProcessName();
270  } else {
271  edm::LogVerbatim("TimingSim") << " is primary particle";
272  }
273 #endif
274 
275  currentHit = new BscG4Hit;
280 
281  currentHit->setPabs(float(preStepPoint->GetMomentum().mag() * invgev));
283  currentHit->setParticleType(theTrack->GetDefinition()->GetPDGEncoding());
284 
285  float ThetaAtEntry = hitPointLocal.theta() * invdeg;
286  float PhiAtEntry = hitPointLocal.phi() * invdeg;
287 
288  currentHit->setThetaAtEntry(ThetaAtEntry);
289  currentHit->setPhiAtEntry(PhiAtEntry);
290 
294 
295  currentHit->setParentId(theTrack->GetParentID());
296  currentHit->setProcessId(theEnumerator->processId(theTrack->GetCreatorProcess()));
297 
298  currentHit->setVertexPosition(theTrack->GetVertexPosition());
299 
300  updateHit();
302 }
303 
306 
307 #ifdef debug
308  edm::LogVerbatim("TimingSim") << "updateHit: " << GetName() << " add eloss(GeV) " << edeposit
309  << "CurrentHit=" << currentHit << ", PostStepPoint= " << postStepPoint->GetPosition();
310 #endif
311 
312  // buffer for next steps:
313  tsID = tSliceID;
314  primID = primaryID;
316 }
317 
318 void TimingSD::setToLocal(const G4StepPoint* stepPoint, const G4ThreeVector& globalPoint, G4ThreeVector& localPoint) {
319  const G4VTouchable* touch = stepPoint->GetTouchable();
320  localPoint = touch->GetHistory()->GetTopTransform().TransformPoint(globalPoint);
321 }
322 
323 void TimingSD::EndOfEvent(G4HCofThisEvent*) {
324  int nhits = theHC->entries();
325  if (0 == nhits) {
326  return;
327  }
328  // here we loop over transient hits and make them persistent
329  for (int j = 0; j < nhits; ++j) {
330  BscG4Hit* aHit = (*theHC)[j];
331  Local3DPoint locEntryPoint = ConvertToLocal3DPoint(aHit->getEntryLocalP());
332  Local3DPoint locExitPoint = ConvertToLocal3DPoint(aHit->getExitLocalP());
333 
334 #ifdef debug
335  edm::LogInfo("TimingSim") << "TimingSD: Hit for storage \n"
336  << *aHit << "\n Entry point: " << locEntryPoint << "\n Exit point: " << locExitPoint
337  << "\n";
338 #endif
339 
340  slave->processHits(PSimHit(locEntryPoint,
341  locExitPoint,
342  aHit->getPabs(),
343  aHit->getTof(),
344  aHit->getEnergyLoss(),
345  aHit->getParticleType(),
346  aHit->getUnitID(),
347  aHit->getTrackID(),
348  aHit->getThetaAtEntry(),
349  aHit->getPhiAtEntry(),
350  aHit->getProcessId()));
351  }
352 }
353 
355  LogDebug("TimingSim") << "TimingSD: Collection " << theHC->GetName() << "\n";
356  theHC->PrintAllHits();
357 }
358 
360  if (slave->name() == hname) {
361  cc = slave->hits();
362  }
363 }
364 
366  LogDebug("TimingSim") << " Dispatched BeginOfEvent for " << GetName();
367  clearHits();
368 }
369 
#define LogDebug(id)
uint32_t previousUnitID
Definition: TimingSD.h:87
void setTof(float e)
Definition: BscG4Hit.h:73
void setEntryLocalP(const G4ThreeVector &xyz)
Definition: BscG4Hit.h:33
static const TGPicture * info(bool iBackgroundIsBlack)
void setEntry(const G4ThreeVector &xyz)
Definition: BSCG4Hit.cc:97
const double GeV
Definition: MathUtil.h:16
void setTimeFactor(double)
Definition: TimingSD.cc:86
float getPhiAtEntry() const
Definition: BscG4Hit.h:78
int getParticleType() const
Definition: BscG4Hit.h:70
bool storeTrack() const
void EndOfEvent(G4HCofThisEvent *eventHC) override
Definition: TimingSD.cc:323
void clearHits() override
Definition: TimingSD.cc:370
Local3DPoint ConvertToLocal3DPoint(const G4ThreeVector &point) const
double timeFactor
Definition: TimingSD.h:101
void setIncidentEnergy(float e)
Definition: BscG4Hit.h:51
int hcID
Definition: TimingSD.h:90
float edepositHAD
Definition: TimingSD.h:109
G4ThreeVector hitPointLocal
Definition: TimingSD.h:97
int getProcessId() const
Definition: BscG4Hit.h:94
std::string name() const
void fillHits(edm::PSimHitContainer &, const std::string &) override
Definition: TimingSD.cc:359
void setTrackID(int id)
Definition: BscG4Hit.h:54
void setParentId(int p)
Definition: BscG4Hit.h:99
#define nullptr
int primID
Definition: TimingSD.h:89
virtual uint32_t setDetUnitId(const G4Step *step)=0
virtual bool checkHit(const G4Step *, BscG4Hit *)
Definition: TimingSD.cc:220
G4ThreeVector hitPointLocalExit
Definition: TimingSD.h:98
void createNewHit(const G4Step *)
Definition: TimingSD.cc:258
float getTof() const
Definition: BscG4Hit.h:68
float getPabs() const
Definition: BscG4Hit.h:67
BscG4Hit * currentHit
Definition: TimingSD.h:82
float edepositEM
Definition: TimingSD.h:109
void setCuts(double eCut, double historyCut)
Definition: TimingSD.cc:96
void setParticleType(int i)
Definition: BscG4Hit.h:75
int getTrackID() const
Definition: BscG4Hit.h:53
int getTimeSliceID() const
Definition: BscG4Hit.h:61
void setToLocal(const G4StepPoint *stepPoint, const G4ThreeVector &globalPoint, G4ThreeVector &localPoint)
Definition: TimingSD.cc:318
void setThetaAtEntry(float t)
Definition: BscG4Hit.h:80
void storeHit(BscG4Hit *)
Definition: TimingSD.cc:247
void setPabs(float e)
Definition: BscG4Hit.h:72
std::vector< PSimHit > & hits()
void getStepInfo(const G4Step *)
Definition: TimingSD.cc:120
unsigned int processId(const G4VProcess *p) const
static const float invgev
Definition: TimingSD.cc:35
void update(const BeginOfEvent *) override
This routine will be called when the appropriate signal arrives.
Definition: TimingSD.cc:365
void setUnitID(uint32_t id)
Definition: BscG4Hit.h:57
float tof
Definition: TimingSD.h:107
virtual void Initialize()
bool ProcessHits(G4Step *, G4TouchableHistory *) override
Definition: TimingSD.cc:109
void setPhiAtEntry(float f)
Definition: BscG4Hit.h:81
int tsID
Definition: TimingSD.h:91
T sqrt(T t)
Definition: SSEVec.h:19
float edeposit
Definition: TimingSD.h:108
TrackingSlaveSD * slave
Definition: TimingSD.h:76
G4ProcessTypeEnumerator * theEnumerator
Definition: TimingSD.h:77
const G4ThreeVector & getExitLocalP() const
Definition: BscG4Hit.h:35
static const double invdeg
Definition: TimingSD.cc:37
double f[11][100]
bool hitExists(const G4Step *)
Definition: TimingSD.cc:189
TrackInformation * cmsTrackInformation(const G4Track *aTrack)
const G4Track * theTrack
Definition: TimingSD.h:83
double energyHistoryCut
Definition: TimingSD.h:104
void PrintAll() override
Definition: TimingSD.cc:354
const G4StepPoint * preStepPoint
Definition: TimingSD.h:84
float getThetaAtEntry() const
Definition: BscG4Hit.h:77
~TimingSD() override
Definition: TimingSD.cc:66
int tSliceID
Definition: TimingSD.h:93
void setTimeSlice(double d)
Definition: BscG4Hit.h:60
void addEnergyDeposit(float em, float hd)
Definition: BSCG4Hit.cc:112
double energyCut
Definition: TimingSD.h:103
uint32_t unitID
Definition: TimingSD.h:87
void setExitLocalP(const G4ThreeVector &xyz)
Definition: BscG4Hit.h:36
double tSlice
Definition: TimingSD.h:100
void setVertexPosition(const G4ThreeVector &)
Definition: BSCG4Hit.cc:124
const G4ThreeVector & getEntryLocalP() const
Definition: BscG4Hit.h:32
TimingSD(const std::string &, const edm::EventSetup &, const SensitiveDetectorCatalog &, const edm::ParameterSet &, const SimTrackManager *)
Definition: TimingSD.cc:40
static const double invns
Definition: TimingSD.cc:36
void updateHit()
Definition: TimingSD.cc:304
const G4StepPoint * postStepPoint
Definition: TimingSD.h:85
BscG4HitCollection * theHC
Definition: TimingSD.h:80
static bool isGammaElectronPositron(int pdgCode)
virtual bool processHits(const PSimHit &)
uint32_t getUnitID() const
Definition: BscG4Hit.h:56
std::vector< PSimHit > PSimHitContainer
double incidentEnergy
Definition: TimingSD.h:106
G4THitsCollection< BscG4Hit > BscG4HitCollection
void setProcessId(int p)
Definition: BscG4Hit.h:100
void Initialize(G4HCofThisEvent *HCE) override
Definition: TimingSD.cc:71
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:30
float getEnergyLoss() const
Definition: BscG4Hit.h:69
G4ThreeVector hitPointExit
Definition: TimingSD.h:96
G4ThreeVector hitPoint
Definition: TimingSD.h:95
int primaryID
Definition: TimingSD.h:92