CMS 3D CMS Logo

HFChamberSD.cc
Go to the documentation of this file.
3 
4 #include "G4VPhysicalVolume.hh"
5 #include "G4PVPlacement.hh"
6 #include "G4HCofThisEvent.hh"
7 #include "G4TouchableHistory.hh"
8 #include "G4Track.hh"
9 #include "G4Step.hh"
10 #include "G4VSolid.hh"
11 #include "G4DynamicParticle.hh"
12 #include "G4ParticleDefinition.hh"
13 #include "G4SDManager.hh"
14 #include "G4ios.hh"
15 
16 #include "G4PhysicalConstants.hh"
17 #include "G4SystemOfUnits.hh"
18 
20  const edm::EventSetup& es,
21  const SensitiveDetectorCatalog& clg,
22  edm::ParameterSet const& p,
23  const SimTrackManager* manager)
24  : SensitiveCaloDetector(name, es, clg, p), m_trackManager(manager), theHCID(-1), theHC(nullptr), theNSteps(0) {
25  edm::LogVerbatim("FiberSim") << "HFChamberSD : Instantiated for " << name;
26 }
27 
29 
30 void HFChamberSD::Initialize(G4HCofThisEvent* HCE) {
31  edm::LogVerbatim("FiberSim") << "HFChamberSD : Initialize called for " << GetName() << " in collection " << HCE;
32  theHC = new HFShowerG4HitsCollection(GetName(), collectionName[0]);
33  if (theHCID < 0)
34  theHCID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]);
35  HCE->AddHitsCollection(theHCID, theHC);
36  edm::LogVerbatim("FiberSim") << "HFChamberSD : Add hit collectrion for " << collectionName[0] << ":" << theHCID << ":"
37  << theHC;
38 }
39 
40 G4bool HFChamberSD::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
41  //do not process hits other than primary particle hits:
42  double charge = aStep->GetTrack()->GetDefinition()->GetPDGCharge();
43  int trackID = aStep->GetTrack()->GetTrackID();
44  if (charge == 0. || trackID != 1 || aStep->GetTrack()->GetParentID() != 0 ||
45  aStep->GetTrack()->GetCreatorProcess() != nullptr)
46  return false;
47  ++theNSteps;
48  //if(theNSteps>1)return false;
49 
50  G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
51  const G4VTouchable* touch = preStepPoint->GetTouchable();
52  int detID = setDetUnitId(aStep);
53 
54  double edep = aStep->GetTotalEnergyDeposit();
55  double time = (preStepPoint->GetGlobalTime()) / ns;
56 
57  const G4ThreeVector& globalPos = preStepPoint->GetPosition();
58  G4ThreeVector localPos = touch->GetHistory()->GetTopTransform().TransformPoint(globalPos);
59  const G4DynamicParticle* particle = aStep->GetTrack()->GetDynamicParticle();
60  const G4ThreeVector& momDir = particle->GetMomentumDirection();
61 
62  HFShowerG4Hit* aHit = new HFShowerG4Hit(detID, trackID, edep, time);
63  aHit->setLocalPos(localPos);
64  aHit->setGlobalPos(globalPos);
65  aHit->setPrimMomDir(momDir);
66 
67  edm::LogVerbatim("FiberSim") << "HFChamberSD: Hit created in (" << touch->GetVolume(0)->GetLogicalVolume()->GetName()
68  << ") ID " << detID << " Track " << trackID << " Edep: " << edep / CLHEP::MeV
69  << " MeV; Time: " << time << " ns; Position (local) " << localPos << " (global ) "
70  << globalPos << " direction " << momDir;
71 
72  theHC->insert(aHit);
73  return true;
74 }
75 
76 void HFChamberSD::EndOfEvent(G4HCofThisEvent* HCE) {
77  edm::LogVerbatim("FiberSim") << "HFChamberSD: Finds " << theHC->entries() << " hits";
78  clear();
79 }
80 
82 
84 
86 
88 
89 uint32_t HFChamberSD::setDetUnitId(const G4Step* aStep) {
90  const G4VTouchable* touch = aStep->GetPreStepPoint()->GetTouchable();
91  return (touch->GetReplicaNumber(0));
92 }
93 
HFChamberSD::clearHits
void clearHits() override
Definition: HFChamberSD.cc:87
HFShowerG4Hit::setPrimMomDir
void setPrimMomDir(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:44
SimTrackManager
Definition: SimTrackManager.h:35
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
protons_cff.time
time
Definition: protons_cff.py:39
MeV
const double MeV
HFShowerG4Hit
Definition: HFShowerG4Hit.h:15
SensitiveCaloDetector
Definition: SensitiveCaloDetector.h:10
HFChamberSD::~HFChamberSD
~HFChamberSD() override
Definition: HFChamberSD.cc:28
HFChamberSD::Initialize
void Initialize(G4HCofThisEvent *HCE) override
Definition: HFChamberSD.cc:30
SensitiveDetectorCatalog
Definition: SensitiveDetectorCatalog.h:10
HFChamberSD::theHC
HFShowerG4HitsCollection * theHC
Definition: HFChamberSD.h:43
bysipixelclustmulteventfilter_cfi.collectionName
collectionName
Definition: bysipixelclustmulteventfilter_cfi.py:5
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition: ALCARECOTkAlJpsiMuMu_cff.py:47
HFChamberSD::setDetUnitId
uint32_t setDetUnitId(const G4Step *) override
Definition: HFChamberSD.cc:89
HFChamberSD::fillHits
void fillHits(edm::PCaloHitContainer &, const std::string &) override
Definition: HFChamberSD.cc:94
HFChamberSD::theHCID
G4int theHCID
Definition: HFChamberSD.h:42
HFShowerG4Hit::setGlobalPos
void setGlobalPos(const G4ThreeVector &xyz)
Definition: HFShowerG4Hit.h:43
edm::ParameterSet
Definition: ParameterSet.h:47
HFChamberSD.h
edm::EventSetup
Definition: EventSetup.h:58
HFChamberSD::theNSteps
int theNSteps
Definition: HFChamberSD.h:44
HFChamberSD::DrawAll
void DrawAll() override
Definition: HFChamberSD.cc:83
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
HFChamberSD::PrintAll
void PrintAll() override
Definition: HFChamberSD.cc:85
Point3D.h
edm::PCaloHitContainer
std::vector< PCaloHit > PCaloHitContainer
Definition: PCaloHitContainer.h:8
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
HFChamberSD::ProcessHits
G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist) override
Definition: HFChamberSD.cc:40
HFChamberSD::EndOfEvent
void EndOfEvent(G4HCofThisEvent *HCE) override
Definition: HFChamberSD.cc:76
HFChamberSD::clear
void clear() override
Definition: HFChamberSD.cc:81
HFChamberSD::HFChamberSD
HFChamberSD(const std::string &, const edm::EventSetup &, const SensitiveDetectorCatalog &, const edm::ParameterSet &, const SimTrackManager *)
Definition: HFChamberSD.cc:19