CMS 3D CMS Logo

HFNoseNumberingScheme.cc
Go to the documentation of this file.
1 // File: HFNoseNumberingScheme.cc
3 // Description: Numbering scheme for HFNose detector
7 #include <iostream>
8 
9 //#define EDM_ML_DEBUG
10 
11 HFNoseNumberingScheme::HFNoseNumberingScheme(const HGCalDDDConstants& hgc) : hgcons_(hgc), mode_(hgc.geomMode()) {
12 #ifdef EDM_ML_DEBUG
13  edm::LogVerbatim("HGCSim") << "Creating HFNoseNumberingScheme";
14 #endif
15 }
16 
18  int layer, int module, int cell, int iz, const G4ThreeVector& pos, double& wt) {
19  // module is the copy number of the wafer as placed in the layer
20  uint32_t index(0);
21  wt = 1.0;
22  int cellU(0), cellV(0), waferType(-1), waferU(0), waferV(0);
23  if (cell >= 0) {
24  waferType = module / 1000000;
25  waferU = module % 100;
26  if ((module / 10000) % 10 > 0)
27  waferU = -waferU;
28  waferV = (module / 100) % 100;
29  if ((module / 100000) % 10 > 0)
30  waferV = -waferV;
31  cellU = cell % 100;
32  cellV = (cell / 100) % 100;
33  } else if (mode_ == HGCalGeometryMode::Hexagon8Full) {
34  double xx = (pos.z() > 0) ? pos.x() : -pos.x();
35  hgcons_.waferFromPosition(xx, pos.y(), layer, waferU, waferV, cellU, cellV, waferType, wt);
36  }
37  if (waferType >= 0) {
38  index = HFNoseDetId(iz, waferType, layer, waferU, waferV, cellU, cellV).rawId();
39 #ifdef EDM_ML_DEBUG
40  edm::LogVerbatim("HFNSim") << "OK WaferType " << waferType << " Wafer " << waferU << ":" << waferV << " Cell "
41  << cellU << ":" << cellV;
42  } else {
43  edm::LogVerbatim("HFNSim") << "Bad WaferType " << waferType;
44 #endif
45  }
46 #ifdef EDM_ML_DEBUG
47  edm::LogVerbatim("HFNSim") << "HFNoseNumberingScheme::i/p " << layer << ":" << module << ":" << cell << ":" << iz
48  << ":" << pos.x() << ":" << pos.y() << ":" << pos.z() << " ID " << std::hex << index
49  << std::dec << " wt " << wt;
50  checkPosition(index, pos);
51 #endif
52  return index;
53 }
54 
55 void HFNoseNumberingScheme::checkPosition(uint32_t index, const G4ThreeVector& pos) const {
56  std::pair<float, float> xy;
57  bool ok(false);
58  double z1(0), tolR(10.0), tolZ(1.0);
59  int lay(-1);
60  if (index == 0) {
61  } else if ((DetId(index).det() == DetId::Forward) && (DetId(index).subdetId() == static_cast<int>(HFNose))) {
62  HFNoseDetId id = HFNoseDetId(index);
63  lay = id.layer();
64  xy = hgcons_.locateCell(lay, id.waferU(), id.waferV(), id.cellU(), id.cellV(), false, true);
65  z1 = hgcons_.waferZ(lay, false);
66  ok = true;
67  }
68  if (ok) {
69  double r1 = std::sqrt(xy.first * xy.first + xy.second * xy.second);
70  double r2 = pos.perp();
71  double z2 = std::abs(pos.z());
72  std::pair<double, double> zrange = hgcons_.rangeZ(false);
73  std::pair<double, double> rrange = hgcons_.rangeR(z2, false);
74  bool match = (std::abs(r1 - r2) < tolR) && (std::abs(z1 - z2) < tolZ);
75  bool inok = ((r2 >= rrange.first) && (r2 <= rrange.second) && (z2 >= zrange.first) && (z2 <= zrange.second));
76  bool outok = ((r1 >= rrange.first) && (r1 <= rrange.second) && (z1 >= zrange.first) && (z1 <= zrange.second));
77  std::string ck = (((r1 < rrange.first - tolR) || (r1 > rrange.second + tolR) || (z1 < zrange.first - tolZ) ||
78  (z1 > zrange.second + tolZ))
79  ? "***** ERROR *****"
80  : "");
81  if (!(match && inok && outok)) {
82  edm::LogVerbatim("HGCSim") << "HFNoseNumberingScheme::Detector " << DetId(index).det() << " Layer " << lay
83  << " R " << r2 << ":" << r1 << ":" << rrange.first << ":" << rrange.second << " Z "
84  << z2 << ":" << z1 << ":" << zrange.first << ":" << zrange.second << " Match " << match
85  << ":" << inok << ":" << outok << " " << ck;
86  edm::LogVerbatim("HGCSim") << "Original " << pos.x() << ":" << pos.y() << " return " << xy.first << ":"
87  << xy.second;
88  if ((DetId(index).det() == DetId::Forward) && (DetId(index).subdetId() == static_cast<int>(HFNose))) {
89  double wt = 0, xx = ((pos.z() > 0) ? pos.x() : -pos.x());
90  int waferU, waferV, cellU, cellV, waferType;
91  hgcons_.waferFromPosition(xx, pos.y(), lay, waferU, waferV, cellU, cellV, waferType, wt, true);
92  xy = hgcons_.locateCell(lay, waferU, waferV, cellU, cellV, false, true, true);
93  edm::LogVerbatim("HGCSim") << "HFNoseNumberingScheme " << HFNoseDetId(index) << " position " << xy.first << ":"
94  << xy.second;
95  }
96  }
97  }
98 }
void waferFromPosition(const double x, const double y, int &wafer, int &icell, int &celltyp) const
uint32_t getUnitID(int layer, int module, int cell, int iz, const G4ThreeVector &pos, double &wt)
assigns the det id to a hit
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
std::pair< float, float > locateCell(int cell, int lay, int type, bool reco) const
void checkPosition(uint32_t index, const G4ThreeVector &pos) const
std::pair< double, double > rangeR(double z, bool reco) const
std::pair< double, double > rangeZ(bool reco) const
T sqrt(T t)
Definition: SSEVec.h:19
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
HFNoseNumberingScheme()=delete
double waferZ(int layer, bool reco) const
Definition: DetId.h:17
const HGCalGeometryMode::GeometryMode mode_
const HGCalDDDConstants & hgcons_
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
Definition: vlib.h:198
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46