CMS 3D CMS Logo

CaloSD.cc
Go to the documentation of this file.
1 // File: CaloSD.cc
3 // Description: Sensitive Detector class for calorimeters
5 
13 
14 #include "G4EventManager.hh"
15 #include "G4LogicalVolumeStore.hh"
16 #include "G4LogicalVolume.hh"
17 #include "G4SDManager.hh"
18 #include "G4Step.hh"
19 #include "G4Track.hh"
20 #include "G4VProcess.hh"
21 #include "G4GFlashSpot.hh"
22 #include "G4ParticleTable.hh"
23 #include "G4SystemOfUnits.hh"
24 #include "G4PhysicalConstants.hh"
25 #include "DD4hep/Filter.h"
26 
27 #include <fstream>
28 #include <memory>
29 #include <sstream>
30 
31 //#define EDM_ML_DEBUG
32 
34  const SensitiveDetectorCatalog& clg,
35  edm::ParameterSet const& p,
36  const SimTrackManager* manager,
37  float timeSliceUnit,
38  bool ignoreTkID)
40  G4VGFlashSensitiveDetector(),
41  eminHit(0.),
42  currentHit(nullptr),
43  m_trackManager(manager),
44  theHC(nullptr),
45  ignoreTrackID(ignoreTkID),
46  hcID(-1),
47  timeSlice(timeSliceUnit),
48  eminHitD(0.) {
49  //Parameters
50  bool dd4hep = p.getParameter<bool>("g4GeometryDD4hepSource");
51  int addlevel = dd4hep ? 1 : 0;
52  edm::ParameterSet m_CaloSD = p.getParameter<edm::ParameterSet>("CaloSD");
53  energyCut = m_CaloSD.getParameter<double>("EminTrack") * CLHEP::GeV;
54  tmaxHit = m_CaloSD.getParameter<double>("TmaxHit") * CLHEP::ns;
55  std::vector<double> eminHits = m_CaloSD.getParameter<std::vector<double>>("EminHits");
56  std::vector<double> tmaxHits = m_CaloSD.getParameter<std::vector<double>>("TmaxHits");
57  std::vector<std::string> hcn = m_CaloSD.getParameter<std::vector<std::string>>("HCNames");
58  std::vector<int> useResMap = m_CaloSD.getParameter<std::vector<int>>("UseResponseTables");
59  std::vector<double> eminHitX = m_CaloSD.getParameter<std::vector<double>>("EminHitsDepth");
60  suppressHeavy = m_CaloSD.getParameter<bool>("SuppressHeavy");
61  kmaxIon = m_CaloSD.getParameter<double>("IonThreshold") * CLHEP::MeV;
62  kmaxProton = m_CaloSD.getParameter<double>("ProtonThreshold") * CLHEP::MeV;
63  kmaxNeutron = m_CaloSD.getParameter<double>("NeutronThreshold") * CLHEP::MeV;
64  nCheckedHits = m_CaloSD.getUntrackedParameter<int>("CheckHits", 25);
65  useMap = m_CaloSD.getUntrackedParameter<bool>("UseMap", true);
66  int verbn = m_CaloSD.getUntrackedParameter<int>("Verbosity", 0);
67  corrTOFBeam = m_CaloSD.getParameter<bool>("CorrectTOFBeam");
68  double beamZ = m_CaloSD.getParameter<double>("BeamPosition") * CLHEP::cm;
69  correctT = beamZ / CLHEP::c_light / CLHEP::nanosecond;
70  doFineCalo_ = m_CaloSD.getParameter<bool>("DoFineCalo");
71  eMinFine_ = m_CaloSD.getParameter<double>("EminFineTrack") * CLHEP::MeV;
72  std::vector<std::string> fineNames = m_CaloSD.getParameter<std::vector<std::string>>("FineCaloNames");
73  std::vector<int> fineLevels = m_CaloSD.getParameter<std::vector<int>>("FineCaloLevels");
74  std::vector<int> useFines = m_CaloSD.getParameter<std::vector<int>>("UseFineCalo");
75  for (auto& level : fineLevels)
76  level += addlevel;
77 
78  SetVerboseLevel(verbn);
79  meanResponse.reset(nullptr);
80  for (unsigned int k = 0; k < hcn.size(); ++k) {
81  if (name == hcn[k]) {
82  if (k < eminHits.size())
83  eminHit = eminHits[k] * CLHEP::MeV;
84  if (k < eminHitX.size())
85  eminHitD = eminHitX[k] * CLHEP::MeV;
86  if (k < tmaxHits.size())
87  tmaxHit = tmaxHits[k] * CLHEP::ns;
88  if (k < useResMap.size() && useResMap[k] > 0) {
89  meanResponse = std::make_unique<CaloMeanResponse>(p);
90  break;
91  }
92  }
93  }
94  slave = std::make_unique<CaloSlaveSD>(name);
95 
98  isParameterized = false;
99 
100  entrancePoint.set(0., 0., 0.);
101  entranceLocal.set(0., 0., 0.);
102  posGlobal.set(0., 0., 0.);
104 
106  forceSave = false;
107 
108  edm::LogVerbatim("CaloSim") << "CaloSD: Minimum energy of track for saving it " << energyCut / CLHEP::GeV
109  << " GeV\n Use of HitID Map " << useMap << "\n Check last " << nCheckedHits
110  << " before saving the hit\n Correct TOF globally by " << correctT
111  << " ns (Flag =" << corrTOFBeam << ")\n Save hits recorded before " << tmaxHit
112  << " ns and if energy is above " << eminHit / CLHEP::MeV << " MeV (for depth 0) or "
113  << eminHitD / CLHEP::MeV << " MeV (for nonzero depths);\n Time Slice Unit "
114  << timeSlice << "\nIgnore TrackID Flag " << ignoreTrackID << " doFineCalo flag "
115  << doFineCalo_ << "\nBeam Position " << beamZ / CLHEP::cm << " cm";
116  if (doFineCalo_)
117  edm::LogVerbatim("DoFineCalo") << "Using finecalo v2";
118 
119  // Treat fine calorimeters
120  edm::LogVerbatim("CaloSim") << "CaloSD: Have a possibility of " << fineNames.size() << " fine calorimeters of which "
121  << useFines.size() << " are selected";
122  for (unsigned int k = 0; k < fineNames.size(); ++k)
123  edm::LogVerbatim("CaloSim") << "[" << k << "] " << fineNames[k] << " at " << fineLevels[k];
124  std::ostringstream st1;
125  for (unsigned int k = 0; k < useFines.size(); ++k)
126  st1 << " [" << k << "] " << useFines[k] << ":" << fineNames[useFines[k]];
127  edm::LogVerbatim("CaloSim") << "CaloSD used calorimeters" << st1.str();
128  const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
129  std::vector<G4LogicalVolume*>::const_iterator lvcite;
130  for (unsigned int i = 0; i < useFines.size(); i++) {
131  G4LogicalVolume* lv = nullptr;
132  G4String name = static_cast<G4String>(fineNames[useFines[i]]);
133  for (lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++) {
134  G4String namx(static_cast<std::string>(dd4hep::dd::noNamespace((*lvcite)->GetName())));
135  if (namx == name) {
136  lv = (*lvcite);
137  break;
138  }
139  }
140  if (lv != nullptr) {
142  detector.name = name;
143  detector.lv = lv;
144  detector.level = fineLevels[useFines[i]];
145  fineDetectors_.emplace_back(detector);
146  }
147  }
148 #ifdef EDM_ML_DEBUG
149  edm::LogVerbatim("CaloSim") << "CaloSD::Loads information for " << fineDetectors_.size() << " fine detectors";
150  unsigned int k(0);
151  for (const auto& detector : fineDetectors_) {
152  edm::LogVerbatim("CaloSim") << "Detector[" << k << "] " << detector.name << " at level " << detector.level
153  << " pointer to LV: " << detector.lv;
154  }
155 #endif
156 }
157 
159 
160 G4bool CaloSD::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
161  NaNTrap(aStep);
162  ignoreReject = false;
163 
164 #ifdef EDM_ML_DEBUG
165  edm::LogVerbatim("CaloSim") << "CaloSD::" << GetName() << " ID= " << aStep->GetTrack()->GetTrackID()
166  << " prID= " << aStep->GetTrack()->GetParentID()
167  << " Eprestep= " << aStep->GetPreStepPoint()->GetKineticEnergy()
168  << " step= " << aStep->GetStepLength() << " Edep= " << aStep->GetTotalEnergyDeposit();
169 #endif
170 
171  // Class variable to determine whether finecalo rules should apply for this step
172  doFineCaloThisStep_ = (doFineCalo_ && isItFineCalo(aStep->GetPreStepPoint()->GetTouchable()));
173 
174  // apply shower library or parameterisation
175  // independent on energy deposition at a step
176  if (isParameterized) {
177  if (getFromLibrary(aStep)) {
178  // for parameterized showers the primary track should be killed
179  // secondary tracks should be killed if they are in the same volume
180  (aStep->GetTrack())->SetTrackStatus(fStopAndKill);
181  if (0 < aStep->GetNumberOfSecondariesInCurrentStep()) {
182  auto tv = aStep->GetSecondaryInCurrentStep();
183  auto vol = aStep->GetPreStepPoint()->GetPhysicalVolume();
184  for (auto& tk : *tv) {
185  if (tk->GetVolume() == vol) {
186  const_cast<G4Track*>(tk)->SetTrackStatus(fStopAndKill);
187  }
188  }
189  }
190  return true;
191  }
192  }
193 
194  // ignore steps without energy deposit
195  edepositEM = edepositHAD = 0.f;
196  if (aStep->GetTotalEnergyDeposit() <= 0.0) {
197  return false;
198  }
199 
200  // check unitID
201  unsigned int unitID = setDetUnitId(aStep);
202  auto const theTrack = aStep->GetTrack();
203  uint16_t depth = getDepth(aStep);
204 
205  double time = theTrack->GetGlobalTime() / nanosecond;
206  int primaryID = getTrackID(theTrack);
207  if (unitID > 0) {
208  currentID.setID(unitID, time, primaryID, depth);
209  } else {
210  if (!ignoreReject) {
211  const G4TouchableHistory* touch = static_cast<const G4TouchableHistory*>(theTrack->GetTouchable());
212  edm::LogVerbatim("CaloSim") << "CaloSD::ProcessHits: unitID= " << unitID << " currUnit= " << currentID.unitID()
213  << " Detector: " << GetName() << " trackID= " << theTrack->GetTrackID() << " "
214  << theTrack->GetDefinition()->GetParticleName()
215  << "\n Edep= " << aStep->GetTotalEnergyDeposit()
216  << " PV: " << touch->GetVolume(0)->GetName()
217  << " PVid= " << touch->GetReplicaNumber(0) << " MVid= " << touch->GetReplicaNumber(1);
218  }
219  return false;
220  }
221  double energy = getEnergyDeposit(aStep);
222  if (energy <= 0.0) {
223  return false;
224  }
225 
226  if (doFineCaloThisStep_) {
227  currentID.setID(unitID, time, findBoundaryCrossingParent(theTrack), depth);
229  }
230 
232  edepositEM = energy;
233  } else {
235  }
236 #ifdef EDM_ML_DEBUG
237  const G4TouchableHistory* touch = static_cast<const G4TouchableHistory*>(theTrack->GetTouchable());
238  edm::LogVerbatim("CaloSim") << "CaloSD::" << GetName() << " PV:" << touch->GetVolume(0)->GetName()
239  << " PVid=" << touch->GetReplicaNumber(0) << " MVid=" << touch->GetReplicaNumber(1)
240  << " Unit:" << std::hex << unitID << std::dec << " Edep=" << edepositEM << " "
241  << edepositHAD << " ID=" << theTrack->GetTrackID() << " pID=" << theTrack->GetParentID()
242  << " E=" << theTrack->GetKineticEnergy() << " S=" << aStep->GetStepLength() << "\n "
243  << theTrack->GetDefinition()->GetParticleName() << " primaryID= " << primaryID
244  << " currentID= (" << currentID << ") previousID= (" << previousID << ")";
245 #endif
246  if (!hitExists(aStep)) {
247  currentHit = createNewHit(aStep, theTrack);
248  } else {
249 #ifdef EDM_ML_DEBUG
250  edm::LogVerbatim("DoFineCalo") << "Not creating new hit, only updating " << shortreprID(currentHit);
251 #endif
252  }
253  return true;
254 }
255 
256 bool CaloSD::ProcessHits(G4GFlashSpot* aSpot, G4TouchableHistory*) {
257  edepositEM = edepositHAD = 0.f;
258  const G4Track* track = aSpot->GetOriginatorTrack()->GetPrimaryTrack();
259 
260  double edep = aSpot->GetEnergySpot()->GetEnergy();
261  if (edep <= 0.0) {
262  return false;
263  }
264 
265  G4Step fFakeStep;
266  G4StepPoint* fFakePreStepPoint = fFakeStep.GetPreStepPoint();
267  G4StepPoint* fFakePostStepPoint = fFakeStep.GetPostStepPoint();
268  fFakePreStepPoint->SetPosition(aSpot->GetPosition());
269  fFakePostStepPoint->SetPosition(aSpot->GetPosition());
270 
271  G4TouchableHandle fTouchableHandle = aSpot->GetTouchableHandle();
272  fFakePreStepPoint->SetTouchableHandle(fTouchableHandle);
273  fFakeStep.SetTotalEnergyDeposit(edep);
274  edep = EnergyCorrected(fFakeStep, track);
275 
276  // zero edep means hit outside the calorimeter
277  if (edep <= 0.0) {
278  return false;
279  }
280 
282  edepositEM = edep;
283  } else {
284  edepositHAD = edep;
285  }
286 
287  unsigned int unitID = setDetUnitId(&fFakeStep);
288 
289  if (unitID > 0) {
290  // time of initial track
291  double time = track->GetGlobalTime() / nanosecond;
292  int primaryID = getTrackID(track);
293  uint16_t depth = getDepth(&fFakeStep);
294  currentID.setID(unitID, time, primaryID, depth);
295 #ifdef EDM_ML_DEBUG
296  edm::LogVerbatim("CaloSim") << "CaloSD:: GetSpotInfo for Unit 0x" << std::hex << currentID.unitID() << std::dec
297  << " Edeposit = " << edepositEM << " " << edepositHAD;
298 #endif
299  // Update if in the same detector, time-slice and for same track
300  if (currentID == previousID) {
302  } else {
303  posGlobal = aSpot->GetEnergySpot()->GetPosition();
304  // Reset entry point for new primary
305  if (currentID.trackID() != previousID.trackID()) {
306  entrancePoint = aSpot->GetPosition();
307  entranceLocal = aSpot->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(entrancePoint);
308  incidentEnergy = track->GetKineticEnergy();
309 #ifdef EDM_ML_DEBUG
310  edm::LogVerbatim("CaloSim") << "CaloSD: Incident energy " << incidentEnergy / CLHEP::GeV << " GeV and"
311  << " entrance point " << entrancePoint << " (Global) " << entranceLocal
312  << " (Local)";
313 #endif
314  }
315  if (!checkHit()) {
316  currentHit = createNewHit(&fFakeStep, track);
317  }
318  }
319  return true;
320  }
321  return false;
322 }
323 
324 double CaloSD::getEnergyDeposit(const G4Step* aStep) { return aStep->GetTotalEnergyDeposit(); }
325 
326 double CaloSD::EnergyCorrected(const G4Step& aStep, const G4Track*) { return aStep.GetTotalEnergyDeposit(); }
327 
328 bool CaloSD::getFromLibrary(const G4Step*) { return false; }
329 
330 bool CaloSD::isItFineCalo(const G4VTouchable* touch) {
331  bool ok(false);
332  int level = ((touch->GetHistoryDepth()) + 1);
333  for (const auto& detector : fineDetectors_) {
334  if (level > 0 && level >= detector.level) {
335  int ii = level - detector.level;
336  G4LogicalVolume* lv = touch->GetVolume(ii)->GetLogicalVolume();
337  ok = (lv == detector.lv);
338 #ifdef EDM_ML_DEBUG
339  std::string name1 = (lv == 0) ? "Unknown" : lv->GetName();
340  edm::LogVerbatim("CaloSim") << "CaloSD: volume " << name1 << ":" << detector.name << " at Level "
341  << detector.level << " Flag " << ok;
342 #endif
343  if (ok)
344  break;
345  }
346  }
347  return ok;
348 }
349 
350 void CaloSD::Initialize(G4HCofThisEvent* HCE) {
351  totalHits = 0;
352 
353 #ifdef EDM_ML_DEBUG
354  edm::LogVerbatim("CaloSim") << "CaloSD : Initialize called for " << GetName();
355 #endif
356 
357  //This initialization is performed at the beginning of an event
358  //------------------------------------------------------------
359  theHC = new CaloG4HitCollection(GetName(), collectionName[0]);
360 
361  if (hcID < 0) {
362  hcID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]);
363  }
364  //theHC ownership is transfered here to HCE
365  HCE->AddHitsCollection(hcID, theHC);
366 }
367 
368 void CaloSD::EndOfEvent(G4HCofThisEvent*) {
369  // clean the hits for the last tracks
370 
372 
373 #ifdef EDM_ML_DEBUG
374  if (theHC == nullptr)
375  edm::LogVerbatim("CaloSim") << "CaloSD: EndofEvent entered with no entries";
376  else
377  edm::LogVerbatim("CaloSim") << "CaloSD: EndofEvent entered with " << theHC->entries() << " entries";
378 #endif
379 }
380 
381 void CaloSD::clear() {}
382 
384 
386 #ifdef EDM_ML_DEBUG
387  edm::LogVerbatim("CaloSim") << "CaloSD: Collection " << theHC->GetName();
388 #endif
389  theHC->PrintAllHits();
390 }
391 
393 #ifdef EDM_ML_DEBUG
394  edm::LogVerbatim("CaloSim") << "CaloSD: Tries to transfer " << slave.get()->hits().size() << " hits for "
395  << slave.get()->name() << " " << hname;
396 #endif
397  if (slave.get()->name() == hname) {
398  cc = slave.get()->hits();
399  }
400  slave.get()->Clean();
401 }
402 
403 G4ThreeVector CaloSD::setToLocal(const G4ThreeVector& global, const G4VTouchable* touch) const {
404  return touch->GetHistory()->GetTopTransform().TransformPoint(global);
405 }
406 
407 G4ThreeVector CaloSD::setToGlobal(const G4ThreeVector& local, const G4VTouchable* touch) const {
408  return touch->GetHistory()->GetTopTransform().Inverse().TransformPoint(local);
409 }
410 
411 bool CaloSD::hitExists(const G4Step* aStep) {
412  // Update if in the same detector, time-slice and for same track
413  if (currentID == previousID) {
415  return true;
416  }
417 
418  // Note T. Klijnsma:
419  // This is a rather strange place to set these class variables.
420  // The code would be much more readable if all logic for determining
421  // whether to update a hit or create a new hit is done in one place,
422  // and only then perform the actual updating or creating of the hit.
423 
424  // Reset entry point for new primary
425  posGlobal = aStep->GetPreStepPoint()->GetPosition();
426  if (currentID.trackID() != previousID.trackID()) {
427  resetForNewPrimary(aStep);
428  }
429  return checkHit();
430 }
431 
433  //look in the HitContainer whether a hit with the same ID already exists:
434  bool found = false;
435  if (useMap) {
436  std::map<CaloHitID, CaloG4Hit*>::const_iterator it = hitMap.find(currentID);
437  if (it != hitMap.end()) {
438  currentHit = it->second;
439  found = true;
440  }
441  } else if (nCheckedHits > 0) {
442  int nhits = theHC->entries();
443  int minhit = std::max(nhits - nCheckedHits, 0);
444  int maxhit = nhits - 1;
445 
446  for (int j = maxhit; j > minhit; --j) {
447  if ((*theHC)[j]->getID() == currentID) {
448  currentHit = (*theHC)[j];
449  found = true;
450  break;
451  }
452  }
453  }
454 
455  if (found) {
457  }
458  return found;
459 }
460 
461 int CaloSD::getNumberOfHits() { return theHC->entries(); }
462 
463 /*
464 Takes a vector of ints (representing trackIDs), and returns a formatted string
465 for debugging purposes
466 */
467 std::string CaloSD::printableDecayChain(const std::vector<unsigned int>& decayChain) {
468  std::stringstream ss;
469  for (long unsigned int i = 0; i < decayChain.size(); i++) {
470  if (i > 0)
471  ss << " <- ";
472  ss << decayChain[i];
473  }
474  return ss.str();
475 }
476 
477 /* Very short representation of a CaloHitID */
479  std::stringstream ss;
480  ss << GetName() << "/" << ID.unitID() << "/trk" << ID.trackID() << "/d" << ID.depth() << "/time" << ID.timeSliceID();
481  if (ID.isFinecaloTrackID())
482  ss << "/FC";
483  return ss.str();
484 }
485 
486 /* As above, but with a hit as input */
488 
489 /*
490 Finds the boundary-crossing parent of a track, and stores it in the CaloSD's map
491 */
492 unsigned int CaloSD::findBoundaryCrossingParent(const G4Track* track, bool markAsSaveable) {
494  unsigned int id = track->GetTrackID();
495  // First see if this track is already in the map
496  auto it = boundaryCrossingParentMap_.find(id);
497  if (it != boundaryCrossingParentMap_.end()) {
498 #ifdef EDM_ML_DEBUG
499  edm::LogVerbatim("DoFineCalo") << "Track " << id << " parent already cached: " << it->second;
500 #endif
501  return it->second;
502  }
503  // Then see if the track itself crosses the boundary
504  else if (trkInfo->crossedBoundary()) {
505 #ifdef EDM_ML_DEBUG
506  edm::LogVerbatim("DoFineCalo") << "Track " << id << " crosses boundary itself";
507 #endif
509  trkInfo->setStoreTrack();
510  return id;
511  }
512  // Else, traverse the history of the track
513  std::vector<unsigned int> decayChain{id};
514 #ifdef EDM_ML_DEBUG
515  edm::LogVerbatim("DoFineCalo") << "Track " << id << ": Traversing history to find boundary-crossing parent";
516 #endif
517  unsigned int parentID = track->GetParentID();
518  while (true) {
519  if (parentID == 0)
520  throw cms::Exception("Unknown", "CaloSD")
521  << "Hit end of parentage for track " << id << " without finding a boundary-crossing parent";
522  // First check if this ancestor is already in the map
523  auto it = boundaryCrossingParentMap_.find(parentID);
524  if (it != boundaryCrossingParentMap_.end()) {
525 #ifdef EDM_ML_DEBUG
526  edm::LogVerbatim("DoFineCalo") << " Track " << parentID
527  << " boundary-crossing parent already cached: " << it->second;
528 #endif
529  // Store this parent also for the rest of the traversed decay chain
530  for (auto ancestorID : decayChain)
531  boundaryCrossingParentMap_[ancestorID] = it->second;
532 #ifdef EDM_ML_DEBUG
533  // In debug mode, still build the rest of the decay chain for debugging
534  decayChain.push_back(parentID);
535  while (parentID != it->second) {
536  parentID = m_trackManager->getTrackByID(parentID, true)->parentID();
537  decayChain.push_back(parentID);
538  }
539  edm::LogVerbatim("DoFineCalo") << " Full decay chain: " << printableDecayChain(decayChain);
540 #endif
541  return it->second;
542  }
543  // If not, get this parent from the track manager (expensive)
545  if (parentTrack->crossedBoundary()) {
546  if (markAsSaveable)
547  parentTrack->setToBeSaved();
548  decayChain.push_back(parentID);
549  // Record this boundary crossing parent for all traversed ancestors
550  for (auto ancestorID : decayChain)
551  boundaryCrossingParentMap_[ancestorID] = parentID;
552 #ifdef EDM_ML_DEBUG
553  edm::LogVerbatim("DoFineCalo") << " Found boundary-crossing ancestor " << parentID << " for track " << id
554  << "; decay chain: " << printableDecayChain(decayChain);
555 #endif
556  return parentID;
557  }
558  // Next iteration
559  decayChain.push_back(parentID);
560  parentID = parentTrack->parentID();
561  }
562 }
563 
564 CaloG4Hit* CaloSD::createNewHit(const G4Step* aStep, const G4Track* theTrack) {
565 #ifdef EDM_ML_DEBUG
566  edm::LogVerbatim("CaloSim") << "CaloSD::CreateNewHit " << getNumberOfHits() << " for " << GetName()
567  << " Unit:" << currentID.unitID() << " " << currentID.depth() << " Edep= " << edepositEM
568  << " " << edepositHAD << " primaryID= " << currentID.trackID()
569  << " timeSlice= " << currentID.timeSliceID() << " ID= " << theTrack->GetTrackID() << " "
570  << theTrack->GetDefinition()->GetParticleName()
571  << " E(GeV)= " << theTrack->GetKineticEnergy() / CLHEP::GeV
572  << " parentID= " << theTrack->GetParentID() << "\n Ein= " << incidentEnergy
573  << " entranceGlobal: " << entrancePoint << " entranceLocal: " << entranceLocal
574  << " posGlobal: " << posGlobal;
575 #endif
576 
577  CaloG4Hit* aHit;
578  if (!reusehit.empty()) {
579  aHit = reusehit.back().release();
580  aHit->setEM(0.f);
581  aHit->setHadr(0.f);
582  reusehit.pop_back();
583  } else {
584  aHit = new CaloG4Hit;
585  }
586 
587  aHit->setID(currentID);
588  aHit->setEntry(entrancePoint.x(), entrancePoint.y(), entrancePoint.z());
590  aHit->setPosition(posGlobal.x(), posGlobal.y(), posGlobal.z());
592  updateHit(aHit);
593 
594  storeHit(aHit);
595  TrackInformation* trkInfo = cmsTrackInformation(theTrack);
596 
597 #ifdef EDM_ML_DEBUG
599  edm::LogVerbatim("DoFineCalo") << "New hit " << shortreprID(aHit) << " using finecalo;"
600  << " isItFineCalo(post)=" << isItFineCalo(aStep->GetPostStepPoint()->GetTouchable())
601  << " isItFineCalo(pre)=" << isItFineCalo(aStep->GetPreStepPoint()->GetTouchable());
602 #endif
603 
604  // 'Traditional', non-fine history bookkeeping
605  if (!doFineCaloThisStep_) {
606  double etrack = 0;
607  if (currentID.trackID() == primIDSaved) { // The track is saved; nothing to be done
608  } else if (currentID.trackID() == theTrack->GetTrackID()) {
609  etrack = theTrack->GetKineticEnergy();
610 #ifdef EDM_ML_DEBUG
611  edm::LogVerbatim("CaloSim") << "CaloSD: set save the track " << currentID.trackID() << " etrack " << etrack
612  << " eCut " << energyCut << " force: " << forceSave
613  << " save: " << (etrack >= energyCut || forceSave);
614 #endif
615  if (etrack >= energyCut || forceSave) {
616  trkInfo->setStoreTrack();
617  }
618  } else {
620 #ifdef EDM_ML_DEBUG
621  edm::LogVerbatim("CaloSim") << "CaloSD : TrackWithHistory pointer for " << currentID.trackID() << " is " << trkh;
622 #endif
623  if (trkh != nullptr) {
624  etrack = sqrt(trkh->momentum().Mag2());
625  if (etrack >= energyCut) {
626  trkh->setToBeSaved();
627 #ifdef EDM_ML_DEBUG
628  edm::LogVerbatim("CaloSim") << "CaloSD: set save the track " << currentID.trackID() << " with Hit";
629 #endif
630  }
631  }
632  }
634  }
635 
636  if (useMap)
637  ++totalHits;
638  return aHit;
639 }
640 
643 #ifdef EDM_ML_DEBUG
644  edm::LogVerbatim("CaloSim") << "CaloSD:" << GetName() << " Add energy deposit in " << currentID
645  << " Edep_em(MeV)= " << edepositEM << " Edep_had(MeV)= " << edepositHAD;
646 #endif
647 
648  // buffer for next steps:
650 }
651 
652 void CaloSD::resetForNewPrimary(const G4Step* aStep) {
653  auto const preStepPoint = aStep->GetPreStepPoint();
654  entrancePoint = preStepPoint->GetPosition();
655  entranceLocal = setToLocal(entrancePoint, preStepPoint->GetTouchable());
656  incidentEnergy = preStepPoint->GetKineticEnergy();
657 #ifdef EDM_ML_DEBUG
658  edm::LogVerbatim("CaloSim") << "CaloSD::resetForNewPrimary for " << GetName()
659  << " ID= " << aStep->GetTrack()->GetTrackID() << " Ein= " << incidentEnergy / CLHEP::GeV
660  << " GeV and"
661  << " entrance point global: " << entrancePoint << " local: " << entranceLocal;
662 #endif
663 }
664 
665 double CaloSD::getAttenuation(const G4Step* aStep, double birk1, double birk2, double birk3) const {
666  double weight = 1.;
667  double charge = aStep->GetPreStepPoint()->GetCharge();
668  double length = aStep->GetStepLength();
669 
670  if (charge != 0. && length > 0.) {
671  double density = aStep->GetPreStepPoint()->GetMaterial()->GetDensity();
672  double dedx = aStep->GetTotalEnergyDeposit() / length;
673  double rkb = birk1 / density;
674  double c = birk2 * rkb * rkb;
675  if (std::abs(charge) >= 2.)
676  rkb /= birk3; // based on alpha particle data
677  weight = 1. / (1. + rkb * dedx + c * dedx * dedx);
678 #ifdef EDM_ML_DEBUG
679  edm::LogVerbatim("CaloSim") << "CaloSD::getAttenuation in " << aStep->GetPreStepPoint()->GetMaterial()->GetName()
680  << " Charge " << charge << " dE/dx " << dedx << " Birk Const " << rkb << ", " << c
681  << " Weight = " << weight << " dE " << aStep->GetTotalEnergyDeposit();
682 #endif
683  }
684  return weight;
685 }
686 
687 void CaloSD::update(const BeginOfRun*) { initRun(); }
688 
689 void CaloSD::update(const BeginOfEvent* g4Event) {
690 #ifdef EDM_ML_DEBUG
691  edm::LogVerbatim("CaloSim") << "CaloSD: Dispatched BeginOfEvent for " << GetName() << " !";
692 #endif
693  clearHits();
694  initEvent(g4Event);
695 }
696 
697 void CaloSD::update(const EndOfTrack* trk) {
698  int id = (*trk)()->GetTrackID();
699  TrackInformation* trkI = cmsTrackInformation((*trk)());
700  int lastTrackID = -1;
701  if (trkI)
702  lastTrackID = trkI->getIDonCaloSurface();
703  if (id == lastTrackID) {
704  auto trksForThisEvent = m_trackManager->trackContainer();
705  if (!trksForThisEvent->empty()) {
706  TrackWithHistory* trkH = trksForThisEvent->back();
707  if (trkH->trackID() == id) {
708  tkMap[id] = trkH;
709 #ifdef EDM_ML_DEBUG
710  edm::LogVerbatim("CaloSim") << "CaloSD: get track " << id << " from Container of size "
711  << trksForThisEvent->size() << " with ID " << trkH->trackID();
712 #endif
713  }
714  }
715  }
716 }
717 
718 void CaloSD::update(const ::EndOfEvent*) {
719  endEvent();
720  slave.get()->ReserveMemory(theHC->entries());
721 
722  int count(0);
723  double eEM(0.0);
724  double eHAD(0.0);
725  double eEM2(0.0);
726  double eHAD2(0.0);
727 #ifdef EDM_ML_DEBUG
728  int wrong(0);
729  double tt(0.0);
730  double zloc(0.0);
731  double zglob(0.0);
732  double ee(0.0);
733 #endif
734  int hc_entries = theHC->entries();
735  for (int i = 0; i < hc_entries; ++i) {
736 #ifdef EDM_ML_DEBUG
737  if (!saveHit((*theHC)[i])) {
738  ++wrong;
739  }
740 #else
741  saveHit((*theHC)[i]);
742 #endif
743 
744  ++count;
745  double x = (*theHC)[i]->getEM();
746  eEM += x;
747  eEM2 += x * x;
748  x = (*theHC)[i]->getHadr();
749  eHAD += x;
750  eHAD2 += x * x;
751 #ifdef EDM_ML_DEBUG
752  tt += (*theHC)[i]->getTimeSlice();
753  ee += (*theHC)[i]->getIncidentEnergy();
754  zglob += std::abs((*theHC)[i]->getEntry().z());
755  zloc += std::abs((*theHC)[i]->getEntryLocal().z());
756 #endif
757  }
758 
759  double norm = (count > 0) ? 1.0 / count : 0.0;
760  eEM *= norm;
761  eEM2 *= norm;
762  eHAD *= norm;
763  eHAD2 *= norm;
764  eEM2 = std::sqrt(eEM2 - eEM * eEM);
765  eHAD2 = std::sqrt(eHAD2 - eHAD * eHAD);
766 #ifdef EDM_ML_DEBUG
767  tt *= norm;
768  ee *= norm;
769  zglob *= norm;
770  zloc *= norm;
771  edm::LogVerbatim("CaloSim") << "CaloSD: " << GetName() << " store " << count << " hits; " << wrong
772  << " track IDs not given properly and " << totalHits - count
773  << " hits not passing cuts\n EmeanEM= " << eEM << " ErmsEM= " << eEM2
774  << "\n EmeanHAD= " << eHAD << " ErmsHAD= " << eHAD2 << " TimeMean= " << tt
775  << " E0mean= " << ee << " Zglob= " << zglob << " Zloc= " << zloc << " ";
776 #endif
777  tkMap.erase(tkMap.begin(), tkMap.end());
778  std::vector<std::unique_ptr<CaloG4Hit>>().swap(reusehit);
779  if (useMap)
780  hitMap.erase(hitMap.begin(), hitMap.end());
782 }
783 
785  cleanIndex = 0;
786  previousID.reset();
787  primIDSaved = -99;
788 #ifdef EDM_ML_DEBUG
789  edm::LogVerbatim("CaloSim") << "CaloSD: Clears hit vector for " << GetName()
790  << " and initialise slave: " << slave.get()->name();
791 #endif
792  slave.get()->Initialize();
793 }
794 
796  if (fpCaloG4HitAllocator) {
797  fpCaloG4HitAllocator->ResetStorage();
798  }
799 }
800 
802 
804 
806 
807 int CaloSD::getTrackID(const G4Track* aTrack) {
808  int primaryID = 0;
809  TrackInformation* trkInfo = cmsTrackInformation(aTrack);
810  if (trkInfo) {
811  primaryID = trkInfo->getIDonCaloSurface();
812 #ifdef EDM_ML_DEBUG
813  edm::LogVerbatim("CaloSim") << "Track ID: " << trkInfo->getIDonCaloSurface() << ":" << aTrack->GetTrackID() << ":"
814  << primaryID;
815 #endif
816  } else {
817  primaryID = aTrack->GetTrackID();
818 #ifdef EDM_ML_DEBUG
819  edm::LogWarning("CaloSim") << "CaloSD: Problem with primaryID **** set by force to TkID **** " << primaryID;
820 #endif
821  }
822  return primaryID;
823 }
824 
825 int CaloSD::setTrackID(const G4Step* aStep) {
826  auto const theTrack = aStep->GetTrack();
827  TrackInformation* trkInfo = cmsTrackInformation(theTrack);
828  int primaryID = trkInfo->getIDonCaloSurface();
829  if (primaryID <= 0) {
830  primaryID = theTrack->GetTrackID();
831  }
832 #ifdef EDM_ML_DEBUG
833  edm::LogVerbatim("CaloSim") << "Track ID: " << trkInfo->getIDonCaloSurface() << ":" << theTrack->GetTrackID() << ":"
834  << primaryID;
835 #endif
836 
837  if (primaryID != previousID.trackID()) {
838  resetForNewPrimary(aStep);
839  }
840 #ifdef EDM_ML_DEBUG
841  edm::LogVerbatim("CaloSim") << "CaloSD::setTrackID for " << GetName()
842  << " trackID= " << aStep->GetTrack()->GetTrackID() << " primaryID= " << primaryID;
843 #endif
844  return primaryID;
845 }
846 
847 uint16_t CaloSD::getDepth(const G4Step*) { return 0; }
848 
850  double emin(eminHit);
851  if (hit->getDepth() > 0)
852  emin = eminHitD;
853 #ifdef EDM_ML_DEBUG
854  edm::LogVerbatim("CaloSim") << "CaloSD::filterHit(..) Depth " << hit->getDepth() << " Emin = " << emin << " ("
855  << eminHit << ", " << eminHitD << ")";
856 #endif
857  return ((time <= tmaxHit) && (hit->getEnergyDeposit() > emin));
858 }
859 
860 double CaloSD::getResponseWt(const G4Track* aTrack) {
861  double wt = 1.0;
862  if (meanResponse.get()) {
863  TrackInformation* trkInfo = cmsTrackInformation(aTrack);
864  wt = meanResponse.get()->getWeight(trkInfo->genParticlePID(), trkInfo->genParticleP());
865  }
866  return wt;
867 }
868 
870  if (hit == nullptr || previousID.trackID() < 0) {
871  edm::LogWarning("CaloSim") << "CaloSD: hit to be stored is nullptr !!"
872  << " previousID.trackID()= " << previousID.trackID();
873  return;
874  }
875 
876  theHC->insert(hit);
877  if (useMap)
878  hitMap.insert(std::pair<CaloHitID, CaloG4Hit*>(previousID, hit));
879 }
880 
882  int tkID;
883  bool ok = true;
884 
885  double time = aHit->getTimeSlice();
886  if (corrTOFBeam)
887  time += correctT;
888 
889  // More strict bookkeeping for finecalo
890  if (doFineCalo_ && aHit->isFinecaloTrackID()) {
891 #ifdef EDM_ML_DEBUG
892  edm::LogVerbatim("DoFineCalo") << "Saving hit " << shortreprID(aHit);
893 #endif
894  if (!m_trackManager)
895  throw cms::Exception("Unknown", "CaloSD") << "m_trackManager not set, needed for finecalo!";
896  if (!m_trackManager->trackExists(aHit->getTrackID()))
897  throw cms::Exception("Unknown", "CaloSD")
898  << "Error on hit " << shortreprID(aHit) << ": Parent track not in track manager";
899  slave.get()->processHits(aHit->getUnitID(),
900  aHit->getEM() / CLHEP::GeV,
901  aHit->getHadr() / CLHEP::GeV,
902  time,
903  aHit->getTrackID(),
904  aHit->getDepth());
905  }
906  // Regular, not-fine way:
907  else {
908  if (m_trackManager) {
909  tkID = m_trackManager->giveMotherNeeded(aHit->getTrackID());
910  if (tkID == 0) {
911  if (m_trackManager->trackExists(aHit->getTrackID()))
912  tkID = (aHit->getTrackID());
913  else {
914  ok = false;
915  }
916  }
917  } else {
918  tkID = aHit->getTrackID();
919  ok = false;
920  }
921 #ifdef EDM_ML_DEBUG
922  edm::LogVerbatim("DoFineCalo") << "Saving hit " << shortreprID(aHit) << " with trackID=" << tkID;
923 #endif
924  slave.get()->processHits(
925  aHit->getUnitID(), aHit->getEM() / CLHEP::GeV, aHit->getHadr() / CLHEP::GeV, time, tkID, aHit->getDepth());
926  }
927 
928 #ifdef EDM_ML_DEBUG
929  if (!ok)
930  edm::LogWarning("CaloSim") << "CaloSD:Cannot find track ID for " << aHit->getTrackID();
931  edm::LogVerbatim("CaloSim") << "CalosD: Track ID " << aHit->getTrackID() << " changed to " << tkID
932  << " by SimTrackManager Status " << ok;
933 #endif
934 
935 #ifdef EDM_ML_DEBUG
936  edm::LogVerbatim("CaloSim") << "CaloSD: Store Hit at " << std::hex << aHit->getUnitID() << std::dec << " "
937  << aHit->getDepth() << " due to " << tkID << " in time " << time << " of energy "
938  << aHit->getEM() / CLHEP::GeV << " GeV (EM) and " << aHit->getHadr() / CLHEP::GeV
939  << " GeV (Hadr)";
940 #endif
941  return ok;
942 }
943 
944 void CaloSD::update(const BeginOfTrack* trk) {
945  int primary = -1;
946  TrackInformation* trkInfo = cmsTrackInformation((*trk)());
947  if (trkInfo->isPrimary())
948  primary = (*trk)()->GetTrackID();
949 
950 #ifdef EDM_ML_DEBUG
951  edm::LogVerbatim("CaloSim") << "New track: isPrimary " << trkInfo->isPrimary() << " primary ID = " << primary
952  << " primary ancestor ID " << primAncestor;
953 #endif
954 
955  // update the information if a different primary track ID
956 
957  if (primary > 0 && primary != primAncestor) {
958  primAncestor = primary;
959 
960  // clean the hits information
961 
962  if (theHC->entries() > 0)
964  }
965 }
966 
968  std::vector<CaloG4Hit*>* theCollection = theHC->GetVector();
969 
970 #ifdef EDM_ML_DEBUG
971  edm::LogVerbatim("CaloSim") << "CaloSD: collection before merging, size = " << theHC->entries();
972 #endif
973  if (reusehit.empty())
974  reusehit.reserve(theHC->entries() - cleanIndex);
975 
976  // if no map used, merge before hits to have the save situation as a map
977  if (!useMap) {
978  std::vector<CaloG4Hit*> hitvec;
979 
980  hitvec.swap(*theCollection);
981  sort((hitvec.begin() + cleanIndex), hitvec.end(), CaloG4HitLess());
982 #ifdef EDM_ML_DEBUG
983  edm::LogVerbatim("CaloSim") << "CaloSD::cleanHitCollection: sort hits in buffer starting from "
984  << "element = " << cleanIndex;
985  for (unsigned int i = 0; i < hitvec.size(); ++i) {
986  if (hitvec[i] == nullptr)
987  edm::LogVerbatim("CaloSim") << i << " has a null pointer";
988  else
989  edm::LogVerbatim("CaloSim") << i << " " << *hitvec[i];
990  }
991 #endif
993  for (unsigned int i = cleanIndex; i < hitvec.size(); ++i) {
994  int jump = 0;
995  for (unsigned int j = i + 1; j < hitvec.size() && equal(hitvec[i], hitvec[j]); ++j) {
996  ++jump;
997  // merge j to i
998  (*hitvec[i]).addEnergyDeposit(*hitvec[j]);
999  (*hitvec[j]).setEM(0.);
1000  (*hitvec[j]).setHadr(0.);
1001  reusehit.emplace_back(hitvec[j]);
1002  hitvec[j] = nullptr;
1003  }
1004  i += jump;
1005  }
1006 #ifdef EDM_ML_DEBUG
1007  edm::LogVerbatim("CaloSim") << "CaloSD: cleanHitCollection merge the hits in buffer ";
1008  for (unsigned int i = 0; i < hitvec.size(); ++i) {
1009  if (hitvec[i] == nullptr)
1010  edm::LogVerbatim("CaloSim") << i << " has a null pointer";
1011  else
1012  edm::LogVerbatim("CaloSim") << i << " " << *hitvec[i];
1013  }
1014 #endif
1015  //move all nullptr to end of list and then remove them
1016  hitvec.erase(
1017  std::stable_partition(hitvec.begin() + cleanIndex, hitvec.end(), [](CaloG4Hit* p) { return p != nullptr; }),
1018  hitvec.end());
1019 #ifdef EDM_ML_DEBUG
1020  edm::LogVerbatim("CaloSim") << "CaloSD::cleanHitCollection: remove the merged hits in buffer,"
1021  << " new size = " << hitvec.size();
1022 #endif
1023  hitvec.swap(*theCollection);
1024  totalHits = theHC->entries();
1025  }
1026 
1027 #ifdef EDM_ML_DEBUG
1028  edm::LogVerbatim("CaloSim") << "CaloSD: collection after merging, size= " << theHC->entries()
1029  << " Size of reusehit= " << reusehit.size()
1030  << "\n starting hit selection from index = " << cleanIndex;
1031 #endif
1032 
1033  int addhit = 0;
1034  for (unsigned int i = cleanIndex; i < theCollection->size(); ++i) {
1035  CaloG4Hit* aHit((*theCollection)[i]);
1036 
1037  // selection
1038 
1039  double time = aHit->getTimeSlice();
1040  if (corrTOFBeam)
1041  time += correctT;
1042  if (!filterHit(aHit, time)) {
1043 #ifdef EDM_ML_DEBUG
1044  edm::LogVerbatim("CaloSim") << "CaloSD: dropped CaloG4Hit "
1045  << " " << *aHit;
1046 #endif
1047 
1048  // create the list of hits to be reused
1049 
1050  reusehit.emplace_back((*theCollection)[i]);
1051  (*theCollection)[i] = nullptr;
1052  ++addhit;
1053  }
1054  }
1055 
1056 #ifdef EDM_ML_DEBUG
1057  edm::LogVerbatim("CaloSim") << "CaloSD: Size of reusehit after selection = " << reusehit.size()
1058  << " Number of added hit = " << addhit;
1059 #endif
1060  if (useMap) {
1061  if (addhit > 0) {
1062  int offset = reusehit.size() - addhit;
1063  for (int ii = addhit - 1; ii >= 0; --ii) {
1064  CaloHitID theID = reusehit[offset + ii]->getID();
1065  hitMap.erase(theID);
1066  }
1067  }
1068  }
1069 
1070  //move all nullptr to end of list and then remove them
1071  theCollection->erase(
1072  std::stable_partition(
1073  theCollection->begin() + cleanIndex, theCollection->end(), [](CaloG4Hit* p) { return p != nullptr; }),
1074  theCollection->end());
1075 #ifdef EDM_ML_DEBUG
1076  edm::LogVerbatim("CaloSim") << "CaloSD: hit collection after selection, size = " << theHC->entries();
1077  theHC->PrintAllHits();
1078 #endif
1079 
1080  cleanIndex = theHC->entries();
1081 }
1082 
1083 void CaloSD::printDetectorLevels(const G4VTouchable* touch) const {
1084  //Print name and copy numbers
1085  int level = ((touch->GetHistoryDepth()) + 1);
1086  std::ostringstream st1;
1087  st1 << level << " Levels:";
1088  if (level > 0) {
1089  for (int ii = 0; ii < level; ii++) {
1090  int i = level - ii - 1;
1091  G4VPhysicalVolume* pv = touch->GetVolume(i);
1092  std::string name = (pv != nullptr) ? pv->GetName() : "Unknown";
1093  st1 << " " << name << ":" << touch->GetReplicaNumber(i);
1094  }
1095  }
1096  edm::LogVerbatim("CaloSim") << st1.str();
1097 }
float edepositEM
Definition: CaloSD.h:140
double genParticleP() const
Int_t getEntry(TBranch *branch, EntryNumber entryNumber)
Definition: RootTree.cc:527
double energyCut
Definition: CaloSD.h:144
Log< level::Info, true > LogVerbatim
int getTrackID() const
Definition: CaloG4Hit.h:64
bool isPrimary() const
bool ignoreReject
Definition: CaloSD.h:170
void setStoreTrack()
can only be set to true, cannot be reset to false!
bool crossedBoundary() const
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
virtual bool getFromLibrary(const G4Step *step)
Definition: CaloSD.cc:328
std::vector< PCaloHit > PCaloHitContainer
double kmaxNeutron
Definition: CaloSD.h:149
bool doFineCaloThisStep_
Definition: CaloSD.h:192
G4ThreadLocal G4Allocator< CaloG4Hit > * fpCaloG4HitAllocator
Definition: CaloG4Hit.cc:11
void updateHit(CaloG4Hit *)
Definition: CaloSD.cc:641
virtual uint16_t getDepth(const G4Step *)
Definition: CaloSD.cc:847
virtual double getEnergyDeposit(const G4Step *step)
Definition: CaloSD.cc:324
virtual double EnergyCorrected(const G4Step &step, const G4Track *)
Definition: CaloSD.cc:326
int parentID() const
unsigned int findBoundaryCrossingParent(const G4Track *track, bool markParentAsSaveable=true)
Definition: CaloSD.cc:492
double eMinFine_
Definition: CaloSD.h:185
bool corrTOFBeam
Definition: CaloSD.h:172
int totalHits
Definition: CaloSD.h:177
double getEM() const
Definition: CaloG4Hit.h:55
TrackWithHistory * getTrackByID(int trackID, bool strict=false) const
void setIncidentEnergy(double e)
Definition: CaloG4Hit.h:62
const math::XYZVectorD & momentum() const
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
void setEntryLocal(double x, double y, double z)
Definition: CaloG4Hit.h:50
void DrawAll() override
Definition: CaloSD.cc:383
uint32_t ID
Definition: Definitions.h:24
void clear() override
Definition: CaloSD.cc:381
uint32_t setDetUnitId(const G4Step *step) override=0
bool useMap
Definition: CaloSD.h:171
int hcID
Definition: CaloSD.h:174
double eminHitD
Definition: CaloSD.h:182
uint16_t getDepth() const
Definition: CaloG4Hit.h:69
G4ThreeVector setToLocal(const G4ThreeVector &, const G4VTouchable *) const
Definition: CaloSD.cc:403
Definition: weight.py:1
G4ThreeVector posGlobal
Definition: CaloSD.h:138
virtual int getTrackID(const G4Track *)
Definition: CaloSD.cc:807
int primIDSaved
Definition: CaloSD.h:178
void Initialize(G4HCofThisEvent *HCE) override
Definition: CaloSD.cc:350
int primAncestor
Definition: CaloSD.h:175
void reset() override
Definition: CaloSD.cc:795
double kmaxProton
Definition: CaloSD.h:149
void fillHits(edm::PCaloHitContainer &, const std::string &) override
Definition: CaloSD.cc:392
std::vector< Detector > fineDetectors_
Definition: CaloSD.h:191
double eminHit
Definition: CaloSD.h:144
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:117
double getHadr() const
Definition: CaloG4Hit.h:58
bool equal(const T &first, const T &second)
Definition: Equal.h:32
virtual void initEvent(const BeginOfEvent *)
Definition: CaloSD.cc:803
std::unordered_map< unsigned int, unsigned int > boundaryCrossingParentMap_
Definition: CaloSD.h:189
void cleanHitCollection()
Definition: CaloSD.cc:967
void reset()
Definition: CaloHitID.cc:49
T getUntrackedParameter(std::string const &, T const &) const
bool forceSave
Definition: CaloSD.h:151
int timeSliceID() const
Definition: CaloHitID.h:21
bool isItFineCalo(const G4VTouchable *touch)
Definition: CaloSD.cc:330
void addEnergyDeposit(double em, double hd)
Definition: CaloG4Hit.cc:45
float timeSlice
Definition: CaloSD.h:181
Definition: TTTypes.h:54
bool isFinecaloTrackID() const
Definition: CaloG4Hit.h:70
bool checkHit()
Definition: CaloSD.cc:432
static std::string printableDecayChain(const std::vector< unsigned int > &decayChain)
Definition: CaloSD.cc:467
double kmaxIon
Definition: CaloSD.h:149
bool suppressHeavy
Definition: CaloSD.h:148
std::unique_ptr< CaloSlaveSD > slave
Definition: CaloSD.h:163
float edepositHAD
Definition: CaloSD.h:140
T sqrt(T t)
Definition: SSEVec.h:19
void resetForNewPrimary(const G4Step *)
Definition: CaloSD.cc:652
void setEM(double e)
Definition: CaloG4Hit.h:56
bool doFineCalo_
Definition: CaloSD.h:184
void setID(uint32_t i, double d, int j, uint16_t k=0)
Definition: CaloG4Hit.h:73
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
G4bool ProcessHits(G4Step *step, G4TouchableHistory *) override
Definition: CaloSD.cc:160
double f[11][100]
int getNumberOfHits()
Definition: CaloSD.cc:461
CaloG4Hit * createNewHit(const G4Step *, const G4Track *)
Definition: CaloSD.cc:564
CaloHitID previousID
Definition: CaloSD.h:142
~CaloSD() override
Definition: CaloSD.cc:158
CaloG4Hit * currentHit
Definition: CaloSD.h:146
uint32_t unitID() const
Definition: CaloHitID.h:20
void storeHit(CaloG4Hit *)
Definition: CaloSD.cc:869
G4ThreeVector setToGlobal(const G4ThreeVector &, const G4VTouchable *) const
Definition: CaloSD.cc:407
TrackInformation * cmsTrackInformation(const G4Track *aTrack)
virtual bool filterHit(CaloG4Hit *, double)
Definition: CaloSD.cc:849
int getIDonCaloSurface() const
ii
Definition: cuy.py:589
double tmaxHit
Definition: CaloSD.h:144
void setID(uint32_t unitID, double timeSlice, int trackID, uint16_t depth=0)
Definition: CaloHitID.cc:41
int genParticlePID() const
bool hitExists(const G4Step *)
Definition: CaloSD.cc:411
std::unique_ptr< CaloMeanResponse > meanResponse
Definition: CaloSD.h:164
CaloHitID currentID
Definition: CaloSD.h:142
virtual void initRun()
Definition: CaloSD.cc:801
double correctT
Definition: CaloSD.h:183
std::map< CaloHitID, CaloG4Hit * > hitMap
Definition: CaloSD.h:187
double getAttenuation(const G4Step *aStep, double birk1, double birk2, double birk3) const
Definition: CaloSD.cc:665
void EndOfEvent(G4HCofThisEvent *eventHC) override
Definition: CaloSD.cc:368
CSCCFEBTimeSlice const *const timeSlice(T const &data, int nCFEB, int nSample)
uint32_t getUnitID() const
Definition: CaloG4Hit.h:66
const std::vector< TrackWithHistory * > * trackContainer() const
int nCheckedHits
Definition: CaloSD.h:179
virtual void endEvent()
Definition: CaloSD.cc:805
CaloG4HitCollection * theHC
Definition: CaloSD.h:166
bool trackExists(int i) const
CaloSD(const std::string &aSDname, const SensitiveDetectorCatalog &clg, edm::ParameterSet const &p, const SimTrackManager *, float timeSlice=1., bool ignoreTkID=false)
Definition: CaloSD.cc:33
void printDetectorLevels(const G4VTouchable *) const
Definition: CaloSD.cc:1083
void setHadr(double e)
Definition: CaloG4Hit.h:59
float incidentEnergy
Definition: CaloSD.h:139
virtual int setTrackID(const G4Step *)
Definition: CaloSD.cc:825
void markAsFinecaloTrackID(bool flag=true)
Definition: CaloHitID.h:29
void setPosition(double x, double y, double z)
Definition: CaloG4Hit.h:53
void setEntry(double x, double y, double z)
Definition: CaloG4Hit.h:47
G4THitsCollection< CaloG4Hit > CaloG4HitCollection
int trackID() const
static bool isGammaElectronPositron(int pdgCode)
bool isParameterized
Definition: CaloSD.h:169
double getTimeSlice() const
Definition: CaloG4Hit.h:67
std::map< int, TrackWithHistory * > tkMap
Definition: CaloSD.h:188
int giveMotherNeeded(int i) const
std::vector< std::unique_ptr< CaloG4Hit > > reusehit
Definition: CaloSD.h:190
const SimTrackManager * m_trackManager
Definition: CaloSD.h:161
std::string shortreprID(const CaloHitID &ID)
Definition: CaloSD.cc:478
Log< level::Warning, false > LogWarning
void clearHits() override
Definition: CaloSD.cc:784
double getResponseWt(const G4Track *)
Definition: CaloSD.cc:860
int trackID() const
Definition: CaloHitID.h:23
bool saveHit(CaloG4Hit *)
Definition: CaloSD.cc:881
void PrintAll() override
Definition: CaloSD.cc:385
void NaNTrap(const G4Step *step) const
G4ThreeVector entrancePoint
Definition: CaloSD.h:136
G4ThreeVector entranceLocal
Definition: CaloSD.h:137
void update(const BeginOfRun *) override
This routine will be called when the appropriate signal arrives.
Definition: CaloSD.cc:687
int cleanIndex
Definition: CaloSD.h:176
bool ignoreTrackID
Definition: CaloSD.h:168
uint16_t depth() const
Definition: CaloHitID.h:24