CMS 3D CMS Logo

PltSD.cc
Go to the documentation of this file.
2 
5 
6 #include "G4Step.hh"
7 #include "G4StepPoint.hh"
8 #include "G4Track.hh"
9 #include "G4ThreeVector.hh"
10 
11 #include "CLHEP/Units/GlobalSystemOfUnits.h"
12 #include "CLHEP/Units/GlobalPhysicalConstants.h"
13 
14 #include <iostream>
15 
16 //#define EDM_ML_DEBUG
17 
19  const SensitiveDetectorCatalog& clg,
20  edm::ParameterSet const& p,
21  const SimTrackManager* manager)
22  : TimingSD(name, clg, manager) {
23  edm::ParameterSet m_TrackerSD = p.getParameter<edm::ParameterSet>("PltSD");
24  energyCut =
25  m_TrackerSD.getParameter<double>("EnergyThresholdForPersistencyInGeV") * CLHEP::GeV; //default must be 0.5
27  m_TrackerSD.getParameter<double>("EnergyThresholdForHistoryInGeV") * CLHEP::GeV; //default must be 0.05
28 
30 }
31 
33 
34 uint32_t PltSD::setDetUnitId(const G4Step* aStep) {
35  unsigned int detId = 0;
36 
37 #ifdef EDM_ML_DEBUG
38  edm::LogVerbatim("PltSD") << " DetID = " << detId;
39 #endif
40  //Find number of levels
41  const G4VTouchable* touch = aStep->GetPreStepPoint()->GetTouchable();
42  int level = 0;
43  if (touch)
44  level = ((touch->GetHistoryDepth()) + 1);
45 
46  //Get name and copy numbers
47  if (level > 1) {
48  //some debugging with the names
49  G4String sensorName = touch->GetVolume(2)->GetName();
50  G4String telName = touch->GetVolume(3)->GetName();
51  G4String volumeName = touch->GetVolume(4)->GetName();
52  if (sensorName != "PLTSensorPlane")
53  edm::LogVerbatim("PltSD") << " PltSD::setDetUnitId -w- Sensor name not PLTSensorPlane ";
54  if (telName != "Telescope")
55  edm::LogVerbatim("PltSD") << " PltSD::setDetUnitId -w- Telescope name not Telescope ";
56  if (volumeName != "PLT")
57  edm::LogVerbatim("PltSD") << " PltSD::setDetUnitId -w- Volume name not PLT ";
58 
59  //Get the information about which telescope, plane, row/column was hit
60  int columnNum = touch->GetReplicaNumber(0);
61  int rowNum = touch->GetReplicaNumber(1);
62  int sensorNum = touch->GetReplicaNumber(2);
63  int telNum = touch->GetReplicaNumber(3);
64  //temp stores the PLTBCM volume the hit occured in (i.e. was the hit on the + or -z side?)
65  int temp = touch->GetReplicaNumber(5);
66  //convert to the PLT hit id standard
67  int pltNum;
68  if (temp == 2)
69  pltNum = 0;
70  else
71  pltNum = 1;
72 
73  //correct the telescope numbers on the -z side to have the same naming convention in phi as the +z side
74  if (pltNum == 0) {
75  if (telNum == 0) {
76  telNum = 7;
77  } else if (telNum == 1) {
78  telNum = 6;
79  } else if (telNum == 2) {
80  telNum = 5;
81  } else if (telNum == 3) {
82  telNum = 4;
83  } else if (telNum == 4) {
84  telNum = 3;
85  } else if (telNum == 5) {
86  telNum = 2;
87  } else if (telNum == 6) {
88  telNum = 1;
89  } else if (telNum == 7) {
90  telNum = 0;
91  }
92  }
93  //the PLT is divided into sets of telescopes on the + and -x sides
94  int halfCarriageNum = -1;
95 
96  //If the telescope is on the -x side of the carriage, halfCarriageNum=0. If on the +x side, it is = 1.
97  if (telNum == 0 || telNum == 1 || telNum == 2 || telNum == 3)
98  halfCarriageNum = 0;
99  else
100  halfCarriageNum = 1;
101  //correct the telescope numbers of the +x half-carriage to range from 0 to 3
102  if (halfCarriageNum == 1) {
103  if (telNum == 4) {
104  telNum = 0;
105  } else if (telNum == 5) {
106  telNum = 1;
107  } else if (telNum == 6) {
108  telNum = 2;
109  } else if (telNum == 7) {
110  telNum = 3;
111  }
112  }
113  //Define unique detId for each pixel. See https://twiki.cern.ch/twiki/bin/viewauth/CMS/PLTSimulationGuide for more information
114  detId =
115  10000000 * pltNum + 1000000 * halfCarriageNum + 100000 * telNum + 10000 * sensorNum + 100 * rowNum + columnNum;
116 #ifdef EDM_ML_DEBUG
117  edm::LogVerbatim("PltSD") << "Hit Recorded at "
118  << "plt:" << pltNum << " hc:" << halfCarriageNum << " tel:" << telNum
119  << " plane:" << sensorNum;
120 #endif
121  }
122  return detId;
123 }
124 
125 bool PltSD::checkHit(const G4Step*, BscG4Hit* hit) {
126  // 50 micron are allowed between the exit
127  // point of the current hit and the entry point of the new hit
128  static const float tolerance2 = (float)(0.0025 * CLHEP::mm * CLHEP::mm);
129  return ((hit->getExitLocalP() - getLocalEntryPoint()).mag2() < tolerance2);
130 }
personalPlayback.level
level
Definition: personalPlayback.py:22
SimTrackManager
Definition: SimTrackManager.h:35
MessageLogger.h
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
TimingSD
Definition: TimingSD.h:29
TimingSD::getLocalEntryPoint
const G4ThreeVector & getLocalEntryPoint() const
Definition: TimingSD.h:62
groupFilesInBlocks.temp
list temp
Definition: groupFilesInBlocks.py:142
PltSD.h
SensitiveDetectorCatalog
Definition: SensitiveDetectorCatalog.h:10
PltSD::checkHit
bool checkHit(const G4Step *, BscG4Hit *) override
Definition: PltSD.cc:125
edm::ParameterSet
Definition: ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
GeV
const double GeV
Definition: MathUtil.h:16
mag2
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
Definition: Basic3DVectorLD.h:124
PltSD::energyHistoryCut
double energyHistoryCut
Definition: PltSD.h:25
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
PltSD::PltSD
PltSD(const std::string &, const SensitiveDetectorCatalog &, edm::ParameterSet const &, const SimTrackManager *)
Definition: PltSD.cc:18
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
PltSD::~PltSD
~PltSD() override
Definition: PltSD.cc:32
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
TimingSD::setCuts
void setCuts(double eCut, double historyCut)
Definition: TimingSD.cc:89
BscG4Hit
Definition: BscG4Hit.h:17
ParameterSet.h
PltSD::setDetUnitId
uint32_t setDetUnitId(const G4Step *) override
Definition: PltSD.cc:34
PltSD::energyCut
double energyCut
Definition: PltSD.h:24
hit
Definition: SiStripHitEffFromCalibTree.cc:88