CMS 3D CMS Logo

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

#include <HFChamberSD.h>

Inheritance diagram for HFChamberSD:
SensitiveCaloDetector SensitiveDetector

Public Member Functions

void clear () override
 
void clearHits () override
 
void DrawAll () override
 
void EndOfEvent (G4HCofThisEvent *HCE) override
 
void fillHits (edm::PCaloHitContainer &, const std::string &) override
 
 HFChamberSD (const std::string &, const edm::EventSetup &, const SensitiveDetectorCatalog &, const edm::ParameterSet &, const SimTrackManager *)
 
void Initialize (G4HCofThisEvent *HCE) override
 
void PrintAll () override
 
G4bool ProcessHits (G4Step *aStep, G4TouchableHistory *ROhist) override
 
uint32_t setDetUnitId (const G4Step *) override
 
 ~HFChamberSD () override
 
- Public Member Functions inherited from SensitiveCaloDetector
virtual void reset ()
 
 SensitiveCaloDetector (const std::string &iname, const edm::EventSetup &es, const SensitiveDetectorCatalog &clg, edm::ParameterSet const &p)
 
- 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 edm::EventSetup &es, const SensitiveDetectorCatalog &, edm::ParameterSet const &p, bool calo)
 
 ~SensitiveDetector () override
 

Private Attributes

const SimTrackManagerm_trackManager
 
HFShowerG4HitsCollectiontheHC
 
G4int theHCID
 
int theNSteps
 

Additional Inherited Members

- Protected Types inherited from SensitiveDetector
enum  coordinates { WorldCoordinates, LocalCoordinates }
 
- 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 > &)
 

Detailed Description

Definition at line 19 of file HFChamberSD.h.

Constructor & Destructor Documentation

◆ HFChamberSD()

HFChamberSD::HFChamberSD ( const std::string &  name,
const edm::EventSetup es,
const SensitiveDetectorCatalog clg,
const edm::ParameterSet p,
const SimTrackManager manager 
)
explicit

Definition at line 19 of file HFChamberSD.cc.

24  : SensitiveCaloDetector(name, es, clg, p), m_trackManager(manager), theHCID(-1), theHC(nullptr), theNSteps(0) {}

◆ ~HFChamberSD()

HFChamberSD::~HFChamberSD ( )
override

Definition at line 26 of file HFChamberSD.cc.

26 { delete theHC; }

References theHC.

Member Function Documentation

◆ clear()

void HFChamberSD::clear ( void  )
override

Definition at line 76 of file HFChamberSD.cc.

76 { theNSteps = 0; }

References theNSteps.

Referenced by EndOfEvent().

◆ clearHits()

void HFChamberSD::clearHits ( )
overridevirtual

Implements SensitiveDetector.

Definition at line 82 of file HFChamberSD.cc.

82 {}

◆ DrawAll()

void HFChamberSD::DrawAll ( )
override

Definition at line 78 of file HFChamberSD.cc.

78 {}

◆ EndOfEvent()

void HFChamberSD::EndOfEvent ( G4HCofThisEvent *  HCE)
override

Definition at line 71 of file HFChamberSD.cc.

71  {
72  LogDebug("FiberSim") << "HFChamberSD: Sees" << theHC->entries() << " hits";
73  clear();
74 }

References clear(), LogDebug, and theHC.

◆ fillHits()

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

Implements SensitiveCaloDetector.

Definition at line 89 of file HFChamberSD.cc.

89 {}

◆ Initialize()

void HFChamberSD::Initialize ( G4HCofThisEvent *  HCE)
override

Definition at line 28 of file HFChamberSD.cc.

28  {
29  LogDebug("FiberSim") << "HFChamberSD : Initialize called for " << GetName();
30  theHC = new HFShowerG4HitsCollection(GetName(), collectionName[0]);
31  if (theHCID < 0)
32  theHCID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]);
33  HCE->AddHitsCollection(theHCID, theHC);
34 }

References bysipixelclustmulteventfilter_cfi::collectionName, LogDebug, theHC, and theHCID.

◆ PrintAll()

void HFChamberSD::PrintAll ( )
override

Definition at line 80 of file HFChamberSD.cc.

80 {}

◆ ProcessHits()

G4bool HFChamberSD::ProcessHits ( G4Step *  aStep,
G4TouchableHistory *  ROhist 
)
overridevirtual

Implements SensitiveDetector.

Definition at line 36 of file HFChamberSD.cc.

36  {
37  //do not process hits other than primary particle hits:
38  double charge = aStep->GetTrack()->GetDefinition()->GetPDGCharge();
39  int trackID = aStep->GetTrack()->GetTrackID();
40  if (charge == 0. || trackID != 1 || aStep->GetTrack()->GetParentID() != 0 ||
41  aStep->GetTrack()->GetCreatorProcess() != nullptr)
42  return false;
43  ++theNSteps;
44  //if(theNSteps>1)return false;
45 
46  G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
47  const G4VTouchable* touch = preStepPoint->GetTouchable();
48  int detID = setDetUnitId(aStep);
49 
50  double edep = aStep->GetTotalEnergyDeposit();
51  double time = (preStepPoint->GetGlobalTime()) / ns;
52 
53  const G4ThreeVector& globalPos = preStepPoint->GetPosition();
54  G4ThreeVector localPos = touch->GetHistory()->GetTopTransform().TransformPoint(globalPos);
55  const G4DynamicParticle* particle = aStep->GetTrack()->GetDynamicParticle();
56  const G4ThreeVector& momDir = particle->GetMomentumDirection();
57 
58  HFShowerG4Hit* aHit = new HFShowerG4Hit(detID, trackID, edep, time);
59  aHit->setLocalPos(localPos);
60  aHit->setGlobalPos(globalPos);
61  aHit->setPrimMomDir(momDir);
62 
63  LogDebug("FiberSim") << "HFChamberSD: Hit created in (" << touch->GetVolume(0)->GetLogicalVolume()->GetName() << ") "
64  << " ID " << detID << " Track " << trackID << " Edep: " << edep / MeV << " MeV; Time: " << time
65  << " ns; Position (local) " << localPos << " (global ) " << globalPos << " direction " << momDir;
66 
67  theHC->insert(aHit);
68  return true;
69 }

References ALCARECOTkAlJpsiMuMu_cff::charge, LogDebug, MeV, setDetUnitId(), HFShowerG4Hit::setGlobalPos(), HFShowerG4Hit::setLocalPos(), HFShowerG4Hit::setPrimMomDir(), theHC, theNSteps, and ntuplemaker::time.

◆ setDetUnitId()

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

Implements SensitiveDetector.

Definition at line 84 of file HFChamberSD.cc.

84  {
85  const G4VTouchable* touch = aStep->GetPreStepPoint()->GetTouchable();
86  return (touch->GetReplicaNumber(0));
87 }

Referenced by ProcessHits().

Member Data Documentation

◆ m_trackManager

const SimTrackManager* HFChamberSD::m_trackManager
private

Definition at line 40 of file HFChamberSD.h.

◆ theHC

HFShowerG4HitsCollection* HFChamberSD::theHC
private

Definition at line 43 of file HFChamberSD.h.

Referenced by EndOfEvent(), Initialize(), ProcessHits(), and ~HFChamberSD().

◆ theHCID

G4int HFChamberSD::theHCID
private

Definition at line 42 of file HFChamberSD.h.

Referenced by Initialize().

◆ theNSteps

int HFChamberSD::theNSteps
private

Definition at line 44 of file HFChamberSD.h.

Referenced by clear(), and ProcessHits().

HFShowerG4Hit::setPrimMomDir
void setPrimMomDir(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:44
HFShowerG4HitsCollection
G4THitsCollection< HFShowerG4Hit > HFShowerG4HitsCollection
Definition: HFShowerG4Hit.h:55
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
HFShowerG4Hit::setLocalPos
void setLocalPos(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:42
MeV
const double MeV
HFShowerG4Hit
Definition: HFShowerG4Hit.h:15
SensitiveCaloDetector::SensitiveCaloDetector
SensitiveCaloDetector(const std::string &iname, const edm::EventSetup &es, const SensitiveDetectorCatalog &clg, edm::ParameterSet const &p)
Definition: SensitiveCaloDetector.h:12
HFChamberSD::theHC
HFShowerG4HitsCollection * theHC
Definition: HFChamberSD.h:43
bysipixelclustmulteventfilter_cfi.collectionName
collectionName
Definition: bysipixelclustmulteventfilter_cfi.py:5
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition: ALCARECOTkAlJpsiMuMu_cff.py:47
HFChamberSD::setDetUnitId
uint32_t setDetUnitId(const G4Step *) override
Definition: HFChamberSD.cc:84
HFChamberSD::theHCID
G4int theHCID
Definition: HFChamberSD.h:42
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
HFShowerG4Hit::setGlobalPos
void setGlobalPos(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:43
HFChamberSD::theNSteps
int theNSteps
Definition: HFChamberSD.h:44
HFChamberSD::m_trackManager
const SimTrackManager * m_trackManager
Definition: HFChamberSD.h:40
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
HFChamberSD::clear
void clear() override
Definition: HFChamberSD.cc:76
ntuplemaker.time
time
Definition: ntuplemaker.py:310