CMS 3D CMS Logo

HFNoseSD.cc
Go to the documentation of this file.
1 // File: HFNoseSD.cc
3 // Description: Sensitive Detector class for High Granularity Calorimeter
5 
16 #include "G4LogicalVolumeStore.hh"
17 #include "G4LogicalVolume.hh"
18 #include "G4Step.hh"
19 #include "G4Track.hh"
20 #include "G4ParticleTable.hh"
21 #include "G4VProcess.hh"
22 #include "G4Trap.hh"
23 
24 #include <iostream>
25 #include <fstream>
26 #include <iomanip>
27 
28 //#define EDM_ML_DEBUG
29 
31  const edm::EventSetup& es,
32  const SensitiveDetectorCatalog& clg,
33  edm::ParameterSet const& p,
34  const SimTrackManager* manager)
35  : CaloSD(name,
36  es,
37  clg,
38  p,
39  manager,
40  (float)(p.getParameter<edm::ParameterSet>("HFNoseSD").getParameter<double>("TimeSliceUnit")),
41  p.getParameter<edm::ParameterSet>("HFNoseSD").getParameter<bool>("IgnoreTrackID")),
42  hgcons_(nullptr),
43  slopeMin_(0),
44  levelT1_(99),
45  levelT2_(99),
46  tan30deg_(std::tan(30.0 * CLHEP::deg)) {
47  numberingScheme_.reset(nullptr);
48  mouseBite_.reset(nullptr);
49 
50  edm::ParameterSet m_HFN = p.getParameter<edm::ParameterSet>("HFNoseSD");
51  eminHit_ = m_HFN.getParameter<double>("EminHit") * CLHEP::MeV;
52  fiducialCut_ = m_HFN.getParameter<bool>("FiducialCut");
53  distanceFromEdge_ = m_HFN.getParameter<double>("DistanceFromEdge");
54  storeAllG4Hits_ = m_HFN.getParameter<bool>("StoreAllG4Hits");
55  rejectMB_ = m_HFN.getParameter<bool>("RejectMouseBite");
56  waferRot_ = m_HFN.getParameter<bool>("RotatedWafer");
57  cornerMinMask_ = m_HFN.getParameter<int>("CornerMinMask");
58  angles_ = m_HFN.getUntrackedParameter<std::vector<double>>("WaferAngles");
59 
60  nameX_ = ((name.find("HFNoseHits") != std::string::npos) ? "HGCalHFNoseSensitive" : "HFNoseSensitive");
61 
62  if (storeAllG4Hits_) {
63  setUseMap(false);
65  }
66 
67 #ifdef EDM_ML_DEBUG
68  edm::LogVerbatim("HFNSim") << "**************************************************"
69  << "\n"
70  << "* *"
71  << "\n"
72  << "* Constructing a HFNoseSD with name " << name << "\n"
73  << "* *"
74  << "\n"
75  << "**************************************************";
76 #endif
77  edm::LogVerbatim("HFNSim") << "HFNoseSD:: Threshold for storing hits: " << eminHit_ << " for " << name;
78  edm::LogVerbatim("HFNSim") << "Flag for storing individual Geant4 Hits " << storeAllG4Hits_;
79  edm::LogVerbatim("HFNSim") << "Fiducial volume cut with cut from eta/phi "
80  << "boundary " << fiducialCut_ << " at " << distanceFromEdge_;
81  edm::LogVerbatim("HFNSim") << "Reject MosueBite Flag: " << rejectMB_ << " cuts along " << angles_.size()
82  << " axes: " << angles_[0] << ", " << angles_[1];
83 }
84 
85 double HFNoseSD::getEnergyDeposit(const G4Step* aStep) {
86  double r = aStep->GetPreStepPoint()->GetPosition().perp();
87  double z = std::abs(aStep->GetPreStepPoint()->GetPosition().z());
88 #ifdef EDM_ML_DEBUG
89  G4int parCode = aStep->GetTrack()->GetDefinition()->GetPDGEncoding();
90  G4String parName = aStep->GetTrack()->GetDefinition()->GetParticleName();
91  G4LogicalVolume* lv = aStep->GetPreStepPoint()->GetPhysicalVolume()->GetLogicalVolume();
92  edm::LogVerbatim("HFNSim") << "HFNoseSD: Hit from standard path from " << lv->GetName() << " for Track "
93  << aStep->GetTrack()->GetTrackID() << " (" << parCode << ":" << parName << ") R = " << r
94  << " Z = " << z << " slope = " << r / z << ":" << slopeMin_;
95 #endif
96  // Apply fiducial cut
97  if (r < z * slopeMin_) {
98 #ifdef EDM_ML_DEBUG
99  edm::LogVerbatim("HFNSim") << "HFNoseSD: Fiducial Volume cut";
100 #endif
101  return 0.0;
102  }
103 
104  double wt1 = getResponseWt(aStep->GetTrack());
105  double wt2 = aStep->GetTrack()->GetWeight();
106  double destep = weight_ * wt1 * (aStep->GetTotalEnergyDeposit());
107  if (wt2 > 0)
108  destep *= wt2;
109 #ifdef EDM_ML_DEBUG
110  edm::LogVerbatim("HFNSim") << "HFNoseSD: weights= " << weight_ << ":" << wt1 << ":" << wt2 << " Total weight "
111  << weight_ * wt1 * wt2 << " deStep: " << aStep->GetTotalEnergyDeposit() << ":" << destep;
112 #endif
113  return destep;
114 }
115 
116 uint32_t HFNoseSD::setDetUnitId(const G4Step* aStep) {
117  const G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
118  const G4VTouchable* touch = preStepPoint->GetTouchable();
119 
120  //determine the exact position in global coordinates in the mass geometry
121  G4ThreeVector hitPoint = preStepPoint->GetPosition();
122  float globalZ = touch->GetTranslation(0).z();
123  int iz(globalZ > 0 ? 1 : -1);
124 
125  int layer, module, cell;
126  if ((touch->GetHistoryDepth() == levelT1_) || (touch->GetHistoryDepth() == levelT2_)) {
127  layer = touch->GetReplicaNumber(0);
128  module = -1;
129  cell = -1;
130 #ifdef EDM_ML_DEBUG
131  edm::LogVerbatim("HFNSim") << "DepthsTop: " << touch->GetHistoryDepth() << ":" << levelT1_ << ":" << levelT2_
132  << " name " << touch->GetVolume(0)->GetName() << " layer:module:cell " << layer << ":"
133  << module << ":" << cell;
134 #endif
135  } else {
136  layer = touch->GetReplicaNumber(3);
137  module = touch->GetReplicaNumber(2);
138  cell = touch->GetReplicaNumber(1);
139 #ifdef EDM_ML_DEBUG
140  edm::LogVerbatim("HFNSim") << "DepthsInside: " << touch->GetHistoryDepth() << " name "
141  << touch->GetVolume(0)->GetName() << " layer:module:cell " << layer << ":" << module
142  << ":" << cell;
143 #endif
144  }
145 #ifdef EDM_ML_DEBUG
146  G4Material* mat = aStep->GetPreStepPoint()->GetMaterial();
147  edm::LogVerbatim("HFNSim") << "Depths: " << touch->GetHistoryDepth() << " name " << touch->GetVolume(0)->GetName()
148  << ":" << touch->GetReplicaNumber(0) << " " << touch->GetVolume(1)->GetName() << ":"
149  << touch->GetReplicaNumber(1) << " " << touch->GetVolume(2)->GetName() << ":"
150  << touch->GetReplicaNumber(2) << " " << touch->GetVolume(3)->GetName() << ":"
151  << touch->GetReplicaNumber(3) << " " << touch->GetVolume(4)->GetName() << ":"
152  << touch->GetReplicaNumber(4) << " "
153  << " layer:module:cell " << layer << ":" << module << ":" << cell << " Material "
154  << mat->GetName() << ":" << mat->GetRadlen();
155 #endif
156  // The following statement should be examined later before elimination
157  if (aStep->GetPreStepPoint()->GetMaterial()->GetRadlen() > 100000.)
158  return 0;
159 
160  uint32_t id = setDetUnitId(layer, module, cell, iz, hitPoint);
161  if (rejectMB_ && id != 0) {
162  auto uv = HFNoseDetId(id).waferUV();
163 #ifdef EDM_ML_DEBUG
164  edm::LogVerbatim("HFNSim") << "ID " << std::hex << id << std::dec << " " << HFNoseDetId(id);
165 #endif
166  if (mouseBite_->exclude(hitPoint, iz, uv.first, uv.second)) {
167  id = 0;
168 #ifdef EDM_ML_DEBUG
169  edm::LogVerbatim("HFNSim") << "Rejected by mousebite cutoff *****";
170 #endif
171  }
172  }
173  return id;
174 }
175 
176 void HFNoseSD::update(const BeginOfJob* job) {
177  const edm::EventSetup* es = (*job)();
179  es->get<IdealGeometryRecord>().get(nameX_, hdc);
180  if (hdc.isValid()) {
181  hgcons_ = hdc.product();
184  levelT1_ = hgcons_->levelTop(0);
185  levelT2_ = hgcons_->levelTop(1);
186  double waferSize = hgcons_->waferSize(false);
187  double mouseBite = hgcons_->mouseBite(false);
188  mouseBiteCut_ = waferSize * tan30deg_ - mouseBite;
189 #ifdef EDM_ML_DEBUG
190  edm::LogVerbatim("HFNSim") << "HFNoseSD::Initialized with mode " << geom_mode_ << " Slope cut " << slopeMin_
191  << " top Level " << levelT1_ << ":" << levelT2_ << " wafer " << waferSize << ":"
192  << mouseBite;
193 #endif
194 
195  numberingScheme_ = std::make_unique<HFNoseNumberingScheme>(*hgcons_);
196  if (rejectMB_)
197  mouseBite_ = std::make_unique<HGCMouseBite>(*hgcons_, angles_, mouseBiteCut_, waferRot_);
198  } else {
199  throw cms::Exception("Unknown", "HFNoseSD") << "Cannot find HGCalDDDConstants for " << nameX_ << "\n";
200  }
201 }
202 
204 
205 bool HFNoseSD::filterHit(CaloG4Hit* aHit, double time) {
206  return ((time <= tmaxHit) && (aHit->getEnergyDeposit() > eminHit_));
207 }
208 
209 uint32_t HFNoseSD::setDetUnitId(int layer, int module, int cell, int iz, G4ThreeVector& pos) {
210  uint32_t id = numberingScheme_ ? numberingScheme_->getUnitID(layer, module, cell, iz, pos, weight_) : 0;
211  if (cornerMinMask_ > 2) {
213  id = 0;
214  }
215  return id;
216 }
217 
218 bool HFNoseSD::isItinFidVolume(const G4ThreeVector& pos) {
219  if (fiducialCut_) {
220  return (hgcons_->distFromEdgeHex(pos.x(), pos.y(), pos.z()) > distanceFromEdge_);
221  } else {
222  return true;
223  }
224 }
HFNoseSD::angles_
std::vector< double > angles_
Definition: HFNoseSD.h:53
HFNoseSD::numberingScheme_
std::unique_ptr< HFNoseNumberingScheme > numberingScheme_
Definition: HFNoseSD.h:43
HFNoseSD::initRun
void initRun() override
Definition: HFNoseSD.cc:203
SimTrackManager
Definition: SimTrackManager.h:35
electrons_cff.bool
bool
Definition: electrons_cff.py:393
CaloSD::tmaxHit
double tmaxHit
Definition: CaloSD.h:137
HFNoseSD::filterHit
bool filterHit(CaloG4Hit *, double) override
Definition: HFNoseSD.cc:205
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
ESHandle.h
HFNoseSD::distanceFromEdge_
double distanceFromEdge_
Definition: HFNoseSD.h:48
HFNoseSD.h
HGCalDDDConstants::geomMode
HGCalGeometryMode::GeometryMode geomMode() const
Definition: HGCalDDDConstants.h:53
edm
HLT enums.
Definition: AlignableModifier.h:19
HGCalGeometryMode.h
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
pos
Definition: PixelAliasList.h:18
HFNoseSD::storeAllG4Hits_
bool storeAllG4Hits_
Definition: HFNoseSD.h:50
MeV
const double MeV
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
HFNoseDetId.h
HFNoseSD::levelT1_
int levelT1_
Definition: HFNoseSD.h:49
HFNoseDetId
Definition: HFNoseDetId.h:22
HFNoseSD::fiducialCut_
bool fiducialCut_
Definition: HFNoseSD.h:51
HFNoseSD::mouseBiteCut_
double mouseBiteCut_
Definition: HFNoseSD.h:48
HFNoseSD::isItinFidVolume
bool isItinFidVolume(const G4ThreeVector &)
Definition: HFNoseSD.cc:218
FastMath.h
CaloSD::getResponseWt
double getResponseWt(const G4Track *)
Definition: CaloSD.cc:709
DetId
Definition: DetId.h:17
HFNoseSD::weight_
double weight_
Definition: HFNoseSD.h:47
HFNoseSD::rejectMB_
bool rejectMB_
Definition: HFNoseSD.h:51
HFNoseSD::cornerMinMask_
int cornerMinMask_
Definition: HFNoseSD.h:49
edm::EventSetup::get
T get() const
Definition: EventSetup.h:80
HFNoseSD::waferRot_
bool waferRot_
Definition: HFNoseSD.h:51
CaloG4Hit::getEnergyDeposit
double getEnergyDeposit() const
Definition: CaloG4Hit.h:77
DDAxes::z
edm::ESHandle
Definition: DTSurvey.h:22
SensitiveDetectorCatalog
Definition: SensitiveDetectorCatalog.h:10
HFNoseSD::HFNoseSD
HFNoseSD(const std::string &, const edm::EventSetup &, const SensitiveDetectorCatalog &, edm::ParameterSet const &, const SimTrackManager *)
Definition: HFNoseSD.cc:30
BeginOfJob
Definition: BeginOfJob.h:8
HFNoseSD::geom_mode_
HGCalGeometryMode::GeometryMode geom_mode_
Definition: HFNoseSD.h:46
HGCalDDDConstants::mouseBite
double mouseBite(bool reco) const
Definition: HGCalDDDConstants.cc:878
CLHEP
Definition: CocoaGlobals.h:27
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HFNoseDetId::waferUV
std::pair< int, int > waferUV() const
Definition: HFNoseDetId.h:81
edm::ParameterSet
Definition: ParameterSet.h:47
HFNoseSD::levelT2_
int levelT2_
Definition: HFNoseSD.h:49
ParameterSet
Definition: Functions.h:16
HFNoseSD::setDetUnitId
uint32_t setDetUnitId(const G4Step *step) override
Definition: HFNoseSD.cc:116
HFNoseSD::getEnergyDeposit
double getEnergyDeposit(const G4Step *) override
Definition: HFNoseSD.cc:85
funct::tan
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
HFNoseSD::tan30deg_
const double tan30deg_
Definition: HFNoseSD.h:52
CaloSD::setNumberCheckedHits
void setNumberCheckedHits(int val)
Definition: CaloSD.h:116
IdealGeometryRecord.h
edm::EventSetup
Definition: EventSetup.h:57
TrackInformation.h
CaloG4Hit
Definition: CaloG4Hit.h:32
get
#define get
HFNoseSD::mouseBite_
std::unique_ptr< HGCMouseBite > mouseBite_
Definition: HFNoseSD.h:44
alignCSCRings.r
r
Definition: alignCSCRings.py:93
HFNoseSD::nameX_
std::string nameX_
Definition: HFNoseSD.h:45
HGCalDDDConstants::minSlope
double minSlope() const
Definition: HGCalDDDConstants.h:95
HFNoseSD::update
void update(const BeginOfJob *) override
This routine will be called when the appropriate signal arrives.
Definition: HFNoseSD.cc:176
std
Definition: JetResolutionObject.h:76
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
Exception
Definition: hltDiff.cc:246
HFNoseSD::hgcons_
const HGCalDDDConstants * hgcons_
Definition: HFNoseSD.h:42
HFNoseSD::eminHit_
double eminHit_
Definition: HFNoseSD.h:47
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
HGCalDDDConstants::distFromEdgeHex
double distFromEdgeHex(double x, double y, double z) const
Definition: HGCalDDDConstants.cc:279
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
HFNoseSD::slopeMin_
double slopeMin_
Definition: HFNoseSD.h:47
Exception.h
HGCalDDDConstants::levelTop
int levelTop(int ind=0) const
Definition: HGCalDDDConstants.h:87
CaloSD::setUseMap
void setUseMap(bool val)
Definition: CaloSD.h:105
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
HGCalDDDConstants.h
ntuplemaker.time
time
Definition: ntuplemaker.py:310
HGCalDDDConstants::waferSize
double waferSize(bool reco) const
Definition: HGCalDDDConstants.h:169
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143
HGCalDDDConstants::maskCell
bool maskCell(const DetId &id, int corners) const
Definition: HGCalDDDConstants.cc:745
IdealGeometryRecord
Definition: IdealGeometryRecord.h:25
CaloSD
Definition: CaloSD.h:38