CMS 3D CMS Logo

HGCalNumberingScheme.cc
Go to the documentation of this file.
1 // File: HGCalNumberingScheme.cc
3 // Description: Numbering scheme for High Granularity Calorimeter
11 #include <iostream>
12 
13 //#define EDM_ML_DEBUG
14 
16  const DetId::Detector& det,
17  const std::string& name)
18  : hgcons_(hgc), mode_(hgc.geomMode()), det_(det), name_(name) {
19 #ifdef EDM_ML_DEBUG
20  edm::LogVerbatim("HGCSim") << "Creating HGCalNumberingScheme for " << name_ << " Det " << det_;
21 #endif
22 }
23 
25 #ifdef EDM_ML_DEBUG
26  edm::LogVerbatim("HGCSim") << "Deleting HGCalNumberingScheme";
27 #endif
28 }
29 
30 uint32_t HGCalNumberingScheme::getUnitID(int layer, int module, int cell, int iz, const G4ThreeVector& pos, double& wt) {
31  // module is the copy number of the wafer as placed in the layer
32  uint32_t index(0);
33  wt = 1.0;
34 #ifdef EDM_ML_DEBUG
35  edm::LogVerbatim("HGCSim") << "HGCalNumberingScheme:: input Layer " << layer << " Module " << module << " Cell "
36  << cell << " iz " << iz << " Position " << pos << " Mode " << mode_ << ":"
40 #endif
41  if (hgcons_.waferHexagon8()) {
42  int cellU(0), cellV(0), waferType(-1), waferU(0), waferV(0);
43  if (cell >= 0) {
44  waferType = HGCalTypes::getUnpackedType(module);
47  cellU = HGCalTypes::getUnpackedCellU(cell);
48  cellV = HGCalTypes::getUnpackedCellV(cell);
49  } else if (mode_ != HGCalGeometryMode::Hexagon8) {
50  double xx = (pos.z() > 0) ? pos.x() : -pos.x();
51  hgcons_.waferFromPosition(xx, pos.y(), layer, waferU, waferV, cellU, cellV, waferType, wt);
52  }
53  if (waferType >= 0) {
55  int type = hgcons_.waferType(layer, waferU, waferV, true);
56  if (type != waferType) {
57 #ifdef EDM_ML_DEBUG
58  edm::LogVerbatim("HGCSim") << "HGCalNumberingScheme:: " << name_ << " Layer|u|v|Index|module|cell " << layer
59  << ":" << waferU << ":" << waferV << ":"
60  << HGCalWaferIndex::waferIndex(layer, waferU, waferV, false) << ":" << module
61  << ":" << cell << " has a type mismatch " << waferType << ":" << type;
62 #endif
64  waferType = type;
65  }
66  }
67  index = HGCSiliconDetId(det_, iz, waferType, layer, waferU, waferV, cellU, cellV).rawId();
68 #ifdef EDM_ML_DEBUG
69  edm::LogVerbatim("HGCSim") << "OK WaferType " << waferType << " Wafer " << waferU << ":" << waferV << " Cell "
70  << cellU << ":" << cellV;
71  } else {
72  edm::LogVerbatim("HGCSim") << "Bad WaferType " << waferType << " for Layer:u:v " << layer << ":" << waferU << ":"
73  << waferV;
74 #endif
75  }
76  } else if (hgcons_.tileTrapezoid()) {
77  std::array<int, 3> id = hgcons_.assignCellTrap(pos.x(), pos.y(), pos.z(), layer, false);
78  if (id[2] >= 0) {
79  std::pair<int, int> typm = hgcons_.tileType(layer, id[0], 0);
80  HGCScintillatorDetId detId(id[2], layer, iz * id[0], id[1], false, 0);
81  if (typm.first >= 0) {
82  detId.setType(typm.first);
83  detId.setSiPM(typm.second);
84  }
85  index = detId.rawId();
86 #ifdef EDM_ML_DEBUG
87  int lay = layer + hgcons_.getLayerOffset();
88  edm::LogVerbatim("HGCSim") << "Radius/Phi " << id[0] << ":" << id[1] << " Type " << id[2] << ":" << typm.first
89  << " SiPM " << typm.second << ":" << hgcons_.tileSiPM(typm.second) << " Layer "
90  << layer << ":" << lay << " z " << iz << " " << detId;
91  } else {
92  edm::LogVerbatim("HGCSim") << "Radius/Phi " << id[0] << ":" << id[1] << " Type " << id[2] << " Layer|iz " << layer
93  << ":" << iz << " ERROR";
94 #endif
95  }
96  }
97 #ifdef EDM_ML_DEBUG
98  edm::LogVerbatim("HGCSim") << "HGCalNumberingScheme::i/p " << det_ << ":" << layer << ":" << module << ":" << cell
99  << ":" << iz << ":" << pos.x() << ":" << pos.y() << ":" << pos.z() << " ID " << std::hex
100  << index << std::dec << " wt " << wt;
102 #endif
103  return index;
104 }
105 
106 void HGCalNumberingScheme::checkPosition(uint32_t index, const G4ThreeVector& pos) const {
107  std::pair<float, float> xy;
108  bool ok(false);
109  double z1(0), tolR(12.0), tolZ(1.0);
110  int lay(-1);
111  if (index == 0) {
112  } else if (DetId(index).det() == DetId::HGCalHSi) {
114  lay = id.layer();
115  xy = hgcons_.locateCell(lay, id.waferU(), id.waferV(), id.cellU(), id.cellV(), false, true);
116  z1 = hgcons_.waferZ(lay, false);
117  ok = true;
118  tolR = 12.0;
119  tolZ = 1.0;
120  } else if (DetId(index).det() == DetId::HGCalHSc) {
122  lay = id.layer();
123  xy = hgcons_.locateCellTrap(lay, id.ietaAbs(), id.iphi(), false);
124  z1 = hgcons_.waferZ(lay, false);
125  ok = true;
126  tolR = 50.0;
127  tolZ = 5.0;
128  }
129  if (ok) {
130  double r1 = std::sqrt(xy.first * xy.first + xy.second * xy.second);
131  double r2 = pos.perp();
132  double z2 = std::abs(pos.z());
133  std::pair<double, double> zrange = hgcons_.rangeZ(false);
134  std::pair<double, double> rrange = hgcons_.rangeR(z2, false);
135  bool match = (std::abs(r1 - r2) < tolR) && (std::abs(z1 - z2) < tolZ);
136  bool inok = ((r2 >= rrange.first) && (r2 <= rrange.second) && (z2 >= zrange.first) && (z2 <= zrange.second));
137  bool outok = ((r1 >= rrange.first) && (r1 <= rrange.second) && (z1 >= zrange.first) && (z1 <= zrange.second));
138  std::string ck = (((r1 < rrange.first - tolR) || (r1 > rrange.second + tolR) || (z1 < zrange.first - tolZ) ||
139  (z1 > zrange.second + tolZ))
140  ? "***** ERROR *****"
141  : "");
142  if (!(match && inok && outok)) {
143  edm::LogVerbatim("HGCSim") << "HGCalNumberingScheme::Detector " << det_ << " Layer " << lay << " R " << r2 << ":"
144  << r1 << ":" << rrange.first << ":" << rrange.second << " Z " << z2 << ":" << z1 << ":"
145  << zrange.first << ":" << zrange.second << " Match " << match << ":" << inok << ":"
146  << outok << " " << ck;
147  edm::LogVerbatim("HGCSim") << "Original " << pos.x() << ":" << pos.y() << " return " << xy.first << ":"
148  << xy.second;
149  if (DetId(index).det() == DetId::HGCalHSi) {
150  double wt = 0, xx = ((pos.z() > 0) ? pos.x() : -pos.x());
151  int waferU, waferV, cellU, cellV, waferType;
152  hgcons_.waferFromPosition(xx, pos.y(), lay, waferU, waferV, cellU, cellV, waferType, wt, true);
153  xy = hgcons_.locateCell(lay, waferU, waferV, cellU, cellV, false, true, true);
154  edm::LogVerbatim("HGCSim") << "HGCalNumberingScheme " << HGCSiliconDetId(index) << " position " << xy.first
155  << ":" << xy.second;
156  }
157  }
158  }
159 }
HGCScintillatorDetId::setType
void setType(int type)
Definition: HGCScintillatorDetId.cc:72
HGCalGeometryMode::TrapezoidFile
Definition: HGCalGeometryMode.h:33
MessageLogger.h
TkClusParameters_cff.zrange
zrange
Definition: TkClusParameters_cff.py:7
HGCalDDDConstants::waferFromPosition
void waferFromPosition(const double x, const double y, int &wafer, int &icell, int &celltyp) const
Definition: HGCalDDDConstants.cc:1072
HGCalDDDConstants::rangeZ
std::pair< double, double > rangeZ(bool reco) const
Definition: HGCalDDDConstants.cc:994
HGCalDDDConstants::locateCellTrap
std::pair< float, float > locateCellTrap(int lay, int ieta, int iphi, bool reco) const
Definition: HGCalDDDConstants.cc:717
HGCalDDDConstants::getLayerOffset
int getLayerOffset() const
Definition: HGCalDDDConstants.h:56
pos
Definition: PixelAliasList.h:18
HGCalDDDConstants::waferZ
double waferZ(int layer, bool reco) const
Definition: HGCalDDDConstants.cc:1390
HGCSiliconDetId.h
HGCalWaferIndex::waferU
int32_t waferU(const int32_t index)
Definition: HGCalWaferIndex.cc:27
HGCalDDDConstants::waferHexagon8
bool waferHexagon8() const
Definition: HGCalDDDConstants.h:142
HGCalWaferIndex::waferIndex
int32_t waferIndex(int32_t layer, int32_t waferU, int32_t waferV, bool old=false)
Definition: HGCalWaferIndex.cc:4
convertSQLiteXML.ok
bool ok
Definition: convertSQLiteXML.py:98
HGCSiliconDetId
Definition: HGCSiliconDetId.h:22
HGCSiliconDetId::HGCalCoarseThick
Definition: HGCSiliconDetId.h:24
HGCalDDDConstants
Definition: HGCalDDDConstants.h:27
ForwardSubdetector.h
hgc_digi
Definition: HGCDigitizerTypes.h:10
testProducerWithPsetDescEmpty_cfi.z2
z2
Definition: testProducerWithPsetDescEmpty_cfi.py:41
LEDCalibrationChannels.iphi
iphi
Definition: LEDCalibrationChannels.py:64
HGCalTypes::getUnpackedCellV
static int32_t getUnpackedCellV(int id)
Definition: HGCalTypes.cc:34
HGCalNumberingScheme::name_
std::string name_
Definition: HGCalNumberingScheme.h:33
DetId
Definition: DetId.h:17
DetId::HGCalHSi
Definition: DetId.h:33
HGCalNumberingScheme.h
HGCalDDDConstants::waferType
int waferType(DetId const &id, bool fromFile=false) const
Definition: HGCalDDDConstants.cc:1245
HGCalGeometryMode::Trapezoid
Definition: HGCalGeometryMode.h:31
HGCalWaferIndex.h
HGCalNumberingScheme::HGCalNumberingScheme
HGCalNumberingScheme()=delete
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
HGCalDDDConstants::tileType
std::pair< int, int > tileType(int layer, int ring, int phi) const
Definition: HGCalDDDConstants.h:116
HGCalWaferIndex::waferV
int32_t waferV(const int32_t index)
Definition: HGCalWaferIndex.cc:32
HGCalDDDConstants::rangeR
std::pair< double, double > rangeR(double z, bool reco) const
Definition: HGCalDDDConstants.cc:949
geometryCSVtoXML.xy
xy
Definition: geometryCSVtoXML.py:19
HGCalTypes::getUnpackedU
static int32_t getUnpackedU(int id)
Definition: HGCalTypes.cc:16
phase1PixelTopology::layer
constexpr std::array< uint8_t, layerIndexSize > layer
Definition: phase1PixelTopology.h:99
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HGCalDDDConstants::tileTrapezoid
bool tileTrapezoid() const
Definition: HGCalDDDConstants.h:112
HGCalNumberingScheme::~HGCalNumberingScheme
~HGCalNumberingScheme()
Definition: HGCalNumberingScheme.cc:24
type
type
Definition: SiPixelVCal_PayloadInspector.cc:37
HGCalDDDConstants::tileSiPM
int tileSiPM(int sipm) const
Definition: HGCalDDDConstants.h:111
HGCalGeometryMode::Hexagon8Full
Definition: HGCalGeometryMode.h:30
HGCalNumberingScheme::checkPosition
void checkPosition(uint32_t index, const G4ThreeVector &pos) const
Definition: HGCalNumberingScheme.cc:106
gainCalibHelper::gainCalibPI::type
type
Definition: SiPixelGainCalibHelper.h:40
HGCalTypes::getUnpackedV
static int32_t getUnpackedV(int id)
Definition: HGCalTypes.cc:22
match
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
diffTwoXMLs.r2
r2
Definition: diffTwoXMLs.py:73
HGCalNumberingScheme::hgcons_
const HGCalDDDConstants & hgcons_
Definition: HGCalNumberingScheme.h:30
DetId::Detector
Detector
Definition: DetId.h:24
HGCalDDDConstants::assignCellTrap
std::array< int, 3 > assignCellTrap(float x, float y, float z, int lay, bool reco) const
Definition: HGCalDDDConstants.cc:170
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
HGCalTypes::getUnpackedCellU
static int32_t getUnpackedCellU(int id)
Definition: HGCalTypes.cc:32
diffTwoXMLs.r1
r1
Definition: diffTwoXMLs.py:53
HGCScintillatorDetId
Definition: HGCScintillatorDetId.h:23
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
DetId::HGCalHSc
Definition: DetId.h:34
HGCalGeometryMode::Hexagon8File
Definition: HGCalGeometryMode.h:32
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
HGCScintillatorDetId::setSiPM
void setSiPM(int sipm)
Definition: HGCScintillatorDetId.cc:77
HGCalGeometryMode::Hexagon8
Definition: HGCalGeometryMode.h:29
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
HGCalNumberingScheme::getUnitID
uint32_t getUnitID(int layer, int module, int cell, int iz, const G4ThreeVector &pos, double &wt)
assigns the det id to a hit
Definition: HGCalNumberingScheme.cc:30
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
HGCalDDDConstants::locateCell
std::pair< float, float > locateCell(int cell, int lay, int type, bool reco) const
Definition: HGCalDDDConstants.cc:580
HGCalNumberingScheme::det_
DetId::Detector det_
Definition: HGCalNumberingScheme.h:32
HGCalTypes.h
HGCalNumberingScheme::mode_
const HGCalGeometryMode::GeometryMode mode_
Definition: HGCalNumberingScheme.h:31
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143
geometryCSVtoXML.xx
xx
Definition: geometryCSVtoXML.py:19
HGCalTypes::getUnpackedType
static int32_t getUnpackedType(int id)
Definition: HGCalTypes.cc:14