CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes
HFWedgeSD Class Reference

#include <HFWedgeSD.h>

Inheritance diagram for HFWedgeSD:
SensitiveCaloDetector SensitiveDetector

Public Member Functions

void clear () override
 
void clearHits () override
 
void DrawAll () override
 
void EndOfEvent (G4HCofThisEvent *eventHC) override
 
void fillHits (edm::PCaloHitContainer &, const std::string &) override
 
 HFWedgeSD (const std::string &, const SensitiveDetectorCatalog &clg, const SimTrackManager *)
 
void Initialize (G4HCofThisEvent *HCE) override
 
void PrintAll () override
 
bool ProcessHits (G4Step *step, G4TouchableHistory *tHistory) override
 
uint32_t setDetUnitId (const G4Step *) override
 
 ~HFWedgeSD () override
 
- Public Member Functions inherited from SensitiveCaloDetector
virtual void reset ()
 
 SensitiveCaloDetector (const std::string &iname, const SensitiveDetectorCatalog &clg, const std::string &newcollname="")
 
- Public Member Functions inherited from SensitiveDetector
void EndOfEvent (G4HCofThisEvent *eventHC) override
 
const std::vector< std::string > & getNames () const
 
void Initialize (G4HCofThisEvent *eventHC) override
 
bool isCaloSD () const
 
 SensitiveDetector (const std::string &iname, const SensitiveDetectorCatalog &, bool calo, const std::string &newcollname="")
 
 ~SensitiveDetector () override
 

Protected Member Functions

HFShowerG4HitcreateNewHit ()
 
G4bool hitExists ()
 
void updateHit (HFShowerG4Hit *)
 
- Protected Member Functions inherited from SensitiveDetector
TrackInformationcmsTrackInformation (const G4Track *aTrack)
 
Local3DPoint ConvertToLocal3DPoint (const G4ThreeVector &point) const
 
Local3DPoint FinalStepPosition (const G4Step *step, coordinates) const
 
Local3DPoint InitialStepPosition (const G4Step *step, coordinates) const
 
Local3DPoint LocalPostStepPosition (const G4Step *step) const
 
Local3DPoint LocalPreStepPosition (const G4Step *step) const
 
void NaNTrap (const G4Step *step) const
 
void setNames (const std::vector< std::string > &)
 

Private Attributes

HFShowerG4HitcurrentHit
 
int currentID
 
double edep
 
G4ThreeVector globalPos
 
int hcID
 
std::map< int, HFShowerG4Hit * > hitMap
 
G4ThreeVector localPos
 
G4ThreeVector momDir
 
int previousID
 
HFShowerG4HitsCollectiontheHC
 
double time
 
int trackID
 

Additional Inherited Members

- Protected Types inherited from SensitiveDetector
enum  coordinates { WorldCoordinates, LocalCoordinates }
 

Detailed Description

Definition at line 20 of file HFWedgeSD.h.

Constructor & Destructor Documentation

◆ HFWedgeSD()

HFWedgeSD::HFWedgeSD ( const std::string &  iname,
const SensitiveDetectorCatalog clg,
const SimTrackManager manager 
)
explicit

Definition at line 21 of file HFWedgeSD.cc.

22  : SensitiveCaloDetector(iname, clg), hcID(-1), theHC(nullptr), currentHit(nullptr) {
23  edm::LogVerbatim("FiberSim") << "HFWedgeSD : Instantiated for " << iname;
24 }
Log< level::Info, true > LogVerbatim
int hcID
Definition: HFWedgeSD.h:42
SensitiveCaloDetector(const std::string &iname, const SensitiveDetectorCatalog &clg, const std::string &newcollname="")
HFShowerG4HitsCollection * theHC
Definition: HFWedgeSD.h:43
HFShowerG4Hit * currentHit
Definition: HFWedgeSD.h:49

◆ ~HFWedgeSD()

HFWedgeSD::~HFWedgeSD ( )
override

Definition at line 26 of file HFWedgeSD.cc.

References theHC.

26 { delete theHC; }
HFShowerG4HitsCollection * theHC
Definition: HFWedgeSD.h:43

Member Function Documentation

◆ clear()

void HFWedgeSD::clear ( void  )
override

Definition at line 64 of file HFWedgeSD.cc.

Referenced by EndOfEvent().

64 {}

◆ clearHits()

void HFWedgeSD::clearHits ( )
overridevirtual

Implements SensitiveDetector.

Definition at line 118 of file HFWedgeSD.cc.

References hitMap, and previousID.

Referenced by Initialize().

118  {
119  hitMap.erase(hitMap.begin(), hitMap.end());
120  previousID = -1;
121 }
int previousID
Definition: HFWedgeSD.h:46
std::map< int, HFShowerG4Hit * > hitMap
Definition: HFWedgeSD.h:44

◆ createNewHit()

HFShowerG4Hit * HFWedgeSD::createNewHit ( )
protected

Definition at line 86 of file HFWedgeSD.cc.

References currentID, edep, globalPos, hitMap, localPos, momDir, previousID, HFShowerG4Hit::setGlobalPos(), HFShowerG4Hit::setHitId(), HFShowerG4Hit::setLocalPos(), HFShowerG4Hit::setPrimMomDir(), HFShowerG4Hit::setTime(), HFShowerG4Hit::setTrackId(), theHC, time, trackID, and updateHit().

Referenced by ProcessHits().

86  {
87 #ifdef EDM_ML_DEBUG
88  edm::LogVerbatim("FiberSim") << "HFWedgeSD::CreateNewHit for ID " << currentID << " Track " << trackID
89  << " Edep: " << edep / CLHEP::MeV << " MeV; Time: " << time << " ns; Position (local) "
90  << localPos << " (global ) " << globalPos << " direction " << momDir;
91 #endif
92  HFShowerG4Hit* aHit = new HFShowerG4Hit;
93  aHit->setHitId(currentID);
94  aHit->setTrackId(trackID);
95  aHit->setTime(time);
96  aHit->setLocalPos(localPos);
97  aHit->setGlobalPos(globalPos);
98  aHit->setPrimMomDir(momDir);
99  updateHit(aHit);
100 
101  theHC->insert(aHit);
102  hitMap.insert(std::pair<int, HFShowerG4Hit*>(previousID, aHit));
103 
104  return aHit;
105 }
Log< level::Info, true > LogVerbatim
int previousID
Definition: HFWedgeSD.h:46
void updateHit(HFShowerG4Hit *)
Definition: HFWedgeSD.cc:107
G4ThreeVector momDir
Definition: HFWedgeSD.h:48
void setLocalPos(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:42
std::map< int, HFShowerG4Hit * > hitMap
Definition: HFWedgeSD.h:44
double edep
Definition: HFWedgeSD.h:47
void setTrackId(G4int trackId)
Definition: HFShowerG4Hit.h:38
int trackID
Definition: HFWedgeSD.h:46
G4ThreeVector localPos
Definition: HFWedgeSD.h:48
void setHitId(G4int hitId)
Definition: HFShowerG4Hit.h:37
void setTime(G4double t)
Definition: HFShowerG4Hit.h:41
HFShowerG4HitsCollection * theHC
Definition: HFWedgeSD.h:43
void setPrimMomDir(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:44
void setGlobalPos(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:43
double time
Definition: HFWedgeSD.h:47
int currentID
Definition: HFWedgeSD.h:46
G4ThreeVector globalPos
Definition: HFWedgeSD.h:48

◆ DrawAll()

void HFWedgeSD::DrawAll ( )
override

Definition at line 66 of file HFWedgeSD.cc.

66 {}

◆ EndOfEvent()

void HFWedgeSD::EndOfEvent ( G4HCofThisEvent *  eventHC)
override

Definition at line 59 of file HFWedgeSD.cc.

References clear(), and theHC.

59  {
60  edm::LogVerbatim("FiberSim") << "HFWedgeSD: Sees" << theHC->entries() << " hits";
61  clear();
62 }
Log< level::Info, true > LogVerbatim
HFShowerG4HitsCollection * theHC
Definition: HFWedgeSD.h:43
void clear() override
Definition: HFWedgeSD.cc:64

◆ fillHits()

void HFWedgeSD::fillHits ( edm::PCaloHitContainer ,
const std::string &   
)
overridevirtual

Implements SensitiveCaloDetector.

Definition at line 128 of file HFWedgeSD.cc.

128 {}

◆ hitExists()

G4bool HFWedgeSD::hitExists ( )
protected

Definition at line 70 of file HFWedgeSD.cc.

References currentHit, currentID, hitMap, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, previousID, and updateHit().

Referenced by ProcessHits().

70  {
71  // Update if in the same detector, time-slice and for same track
72  if (currentID == previousID) {
74  return true;
75  }
76 
77  std::map<int, HFShowerG4Hit*>::const_iterator it = hitMap.find(currentID);
78  if (it != hitMap.end()) {
80  return true;
81  }
82 
83  return false;
84 }
int previousID
Definition: HFWedgeSD.h:46
void updateHit(HFShowerG4Hit *)
Definition: HFWedgeSD.cc:107
std::map< int, HFShowerG4Hit * > hitMap
Definition: HFWedgeSD.h:44
HFShowerG4Hit * currentHit
Definition: HFWedgeSD.h:49
int currentID
Definition: HFWedgeSD.h:46

◆ Initialize()

void HFWedgeSD::Initialize ( G4HCofThisEvent *  HCE)
override

Definition at line 28 of file HFWedgeSD.cc.

References clearHits(), bysipixelclustmulteventfilter_cfi::collectionName, hcID, and theHC.

28  {
29  edm::LogVerbatim("FiberSim") << "HFWedgeSD : Initialize called for " << GetName() << " in collection " << HCE;
30  theHC = new HFShowerG4HitsCollection(GetName(), collectionName[0]);
31  if (hcID < 0)
32  hcID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]);
33  HCE->AddHitsCollection(hcID, theHC);
34  edm::LogVerbatim("FiberSim") << "HFWedgeSD : Add hit collectrion for " << collectionName[0] << ":" << hcID << ":"
35  << theHC;
36 
37  clearHits();
38 }
Log< level::Info, true > LogVerbatim
int hcID
Definition: HFWedgeSD.h:42
void clearHits() override
Definition: HFWedgeSD.cc:118
HFShowerG4HitsCollection * theHC
Definition: HFWedgeSD.h:43
G4THitsCollection< HFShowerG4Hit > HFShowerG4HitsCollection
Definition: HFShowerG4Hit.h:55

◆ PrintAll()

void HFWedgeSD::PrintAll ( )
override

Definition at line 68 of file HFWedgeSD.cc.

68 {}

◆ ProcessHits()

G4bool HFWedgeSD::ProcessHits ( G4Step *  step,
G4TouchableHistory *  tHistory 
)
overridevirtual

Implements SensitiveDetector.

Definition at line 40 of file HFWedgeSD.cc.

References createNewHit(), currentHit, currentID, edep, globalPos, hitExists(), localPos, momDir, setDetUnitId(), time, and trackID.

40  {
41  G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
42  const G4VTouchable* touch = preStepPoint->GetTouchable();
43  currentID = setDetUnitId(aStep);
44  trackID = aStep->GetTrack()->GetTrackID();
45  edep = aStep->GetTotalEnergyDeposit();
46  time = (preStepPoint->GetGlobalTime()) / ns;
47 
48  globalPos = preStepPoint->GetPosition();
49  localPos = touch->GetHistory()->GetTopTransform().TransformPoint(globalPos);
50  const G4DynamicParticle* particle = aStep->GetTrack()->GetDynamicParticle();
51  momDir = particle->GetMomentumDirection();
52 
53  if (hitExists() == false && edep > 0.)
55 
56  return true;
57 }
G4ThreeVector momDir
Definition: HFWedgeSD.h:48
double edep
Definition: HFWedgeSD.h:47
int trackID
Definition: HFWedgeSD.h:46
G4bool hitExists()
Definition: HFWedgeSD.cc:70
G4ThreeVector localPos
Definition: HFWedgeSD.h:48
uint32_t setDetUnitId(const G4Step *) override
Definition: HFWedgeSD.cc:123
HFShowerG4Hit * currentHit
Definition: HFWedgeSD.h:49
double time
Definition: HFWedgeSD.h:47
HFShowerG4Hit * createNewHit()
Definition: HFWedgeSD.cc:86
int currentID
Definition: HFWedgeSD.h:46
G4ThreeVector globalPos
Definition: HFWedgeSD.h:48

◆ setDetUnitId()

uint32_t HFWedgeSD::setDetUnitId ( const G4Step *  aStep)
overridevirtual

Implements SensitiveDetector.

Definition at line 123 of file HFWedgeSD.cc.

Referenced by ProcessHits().

123  {
124  const G4VTouchable* touch = aStep->GetPreStepPoint()->GetTouchable();
125  return (touch->GetReplicaNumber(0));
126 }

◆ updateHit()

void HFWedgeSD::updateHit ( HFShowerG4Hit aHit)
protected

Definition at line 107 of file HFWedgeSD.cc.

References currentID, edep, previousID, and HFShowerG4Hit::updateEnergy().

Referenced by createNewHit(), and hitExists().

107  {
108  if (edep != 0) {
109  aHit->updateEnergy(edep);
110 #ifdef EDM_ML_DEBUG
111  edm::LogVerbatim("FiberSim") << "HFWedgeSD: Add energy deposit in " << currentID << " edep " << edep / CLHEP::MeV
112  << " MeV";
113 #endif
114  }
116 }
Log< level::Info, true > LogVerbatim
int previousID
Definition: HFWedgeSD.h:46
double edep
Definition: HFWedgeSD.h:47
void updateEnergy(G4double edep)
Definition: HFShowerG4Hit.h:40
int currentID
Definition: HFWedgeSD.h:46

Member Data Documentation

◆ currentHit

HFShowerG4Hit* HFWedgeSD::currentHit
private

Definition at line 49 of file HFWedgeSD.h.

Referenced by hitExists(), and ProcessHits().

◆ currentID

int HFWedgeSD::currentID
private

Definition at line 46 of file HFWedgeSD.h.

Referenced by createNewHit(), hitExists(), ProcessHits(), and updateHit().

◆ edep

double HFWedgeSD::edep
private

Definition at line 47 of file HFWedgeSD.h.

Referenced by createNewHit(), ProcessHits(), and updateHit().

◆ globalPos

G4ThreeVector HFWedgeSD::globalPos
private

Definition at line 48 of file HFWedgeSD.h.

Referenced by createNewHit(), and ProcessHits().

◆ hcID

int HFWedgeSD::hcID
private

Definition at line 42 of file HFWedgeSD.h.

Referenced by Initialize().

◆ hitMap

std::map<int, HFShowerG4Hit*> HFWedgeSD::hitMap
private

Definition at line 44 of file HFWedgeSD.h.

Referenced by clearHits(), createNewHit(), and hitExists().

◆ localPos

G4ThreeVector HFWedgeSD::localPos
private

Definition at line 48 of file HFWedgeSD.h.

Referenced by createNewHit(), and ProcessHits().

◆ momDir

G4ThreeVector HFWedgeSD::momDir
private

Definition at line 48 of file HFWedgeSD.h.

Referenced by createNewHit(), and ProcessHits().

◆ previousID

int HFWedgeSD::previousID
private

Definition at line 46 of file HFWedgeSD.h.

Referenced by clearHits(), createNewHit(), hitExists(), and updateHit().

◆ theHC

HFShowerG4HitsCollection* HFWedgeSD::theHC
private

Definition at line 43 of file HFWedgeSD.h.

Referenced by createNewHit(), EndOfEvent(), Initialize(), and ~HFWedgeSD().

◆ time

double HFWedgeSD::time
private

Definition at line 47 of file HFWedgeSD.h.

Referenced by createNewHit(), and ProcessHits().

◆ trackID

int HFWedgeSD::trackID
private

Definition at line 46 of file HFWedgeSD.h.

Referenced by createNewHit(), and ProcessHits().