CMS 3D CMS Logo

PltSD.cc
Go to the documentation of this file.
2 
7 
8 #include "G4Step.hh"
9 #include "G4StepPoint.hh"
10 #include "G4Track.hh"
11 #include "G4ThreeVector.hh"
12 
13 #include "CLHEP/Units/GlobalSystemOfUnits.h"
14 #include "CLHEP/Units/GlobalPhysicalConstants.h"
15 
16 #include <iostream>
17 
19  const edm::EventSetup& es,
20  const SensitiveDetectorCatalog& clg,
21  edm::ParameterSet const& p,
22  const SimTrackManager* manager)
23  : TimingSD(name, es, clg, p, manager) {
24  edm::ParameterSet m_TrackerSD = p.getParameter<edm::ParameterSet>("PltSD");
25  energyCut =
26  m_TrackerSD.getParameter<double>("EnergyThresholdForPersistencyInGeV") * CLHEP::GeV; //default must be 0.5
28  m_TrackerSD.getParameter<double>("EnergyThresholdForHistoryInGeV") * CLHEP::GeV; //default must be 0.05
29 
31 }
32 
34 
35 uint32_t PltSD::setDetUnitId(const G4Step* aStep) {
36  unsigned int detId = 0;
37 
38  LogDebug("PltSD") << " DetID = " << detId;
39 
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  std::cout << " PltSD::setDetUnitId -w- Sensor name not PLTSensorPlane " << std::endl;
54  if (telName != "Telescope")
55  std::cout << " PltSD::setDetUnitId -w- Telescope name not Telescope " << std::endl;
56  if (volumeName != "PLT")
57  std::cout << " PltSD::setDetUnitId -w- Volume name not PLT " << std::endl;
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  //std::cout << "Hit Recorded at " << "plt:" << pltNum << " hc:" << halfCarriageNum << " tel:" << telNum << " plane:" << sensorNum << std::endl;
117  }
118  return detId;
119 }
120 
121 bool PltSD::checkHit(const G4Step*, BscG4Hit* hit) {
122  // 50 micron are allowed between the exit
123  // point of the current hit and the entry point of the new hit
124  static const float tolerance2 = (float)(0.0025 * CLHEP::mm * CLHEP::mm);
125  return ((hit->getExitLocalP() - getLocalEntryPoint()).mag2() < tolerance2);
126 }
personalPlayback.level
level
Definition: personalPlayback.py:22
SimTrackManager
Definition: SimTrackManager.h:35
ESTransientHandle.h
MessageLogger.h
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
ESHandle.h
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
gather_cfg.cout
cout
Definition: gather_cfg.py:144
TimingSD
Definition: TimingSD.h:29
TimingSD::getLocalEntryPoint
const G4ThreeVector & getLocalEntryPoint() const
Definition: TimingSD.h:66
groupFilesInBlocks.temp
list temp
Definition: groupFilesInBlocks.py:142
PltSD.h
SensitiveDetectorCatalog
Definition: SensitiveDetectorCatalog.h:10
PltSD::PltSD
PltSD(const std::string &, const edm::EventSetup &, const SensitiveDetectorCatalog &, edm::ParameterSet const &, const SimTrackManager *)
Definition: PltSD.cc:18
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
PltSD::checkHit
bool checkHit(const G4Step *, BscG4Hit *) override
Definition: PltSD.cc:121
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
edm::ParameterSet
Definition: ParameterSet.h:47
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:27
edm::EventSetup
Definition: EventSetup.h:57
PltSD::~PltSD
~PltSD() override
Definition: PltSD.cc:33
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
TimingSD::setCuts
void setCuts(double eCut, double historyCut)
Definition: TimingSD.cc:96
BscG4Hit
Definition: BscG4Hit.h:17
PltSD::setDetUnitId
uint32_t setDetUnitId(const G4Step *) override
Definition: PltSD.cc:35
PltSD::energyCut
double energyCut
Definition: PltSD.h:26
hit
Definition: SiStripHitEffFromCalibTree.cc:88