CMS 3D CMS Logo

MTDTimeCalib.cc
Go to the documentation of this file.
2 
5 
10 
12  : geom_(geom),
13  topo_(topo),
14  btlTimeOffset_(conf.getParameter<double>("BTLTimeOffset")),
15  etlTimeOffset_(conf.getParameter<double>("ETLTimeOffset")),
16  btlLightCollTime_(conf.getParameter<double>("BTLLightCollTime")),
17  btlLightCollSlope_(conf.getParameter<double>("BTLLightCollSlope")) {}
18 
19 float MTDTimeCalib::getTimeCalib(const MTDDetId& id) const {
20  if (id.subDetector() != MTDDetId::FastTime) {
21  throw cms::Exception("MTDTimeCalib") << "MTDDetId: " << std::hex << id.rawId() << " is invalid!" << std::dec
22  << std::endl;
23  }
24 
25  float time_calib = 0.;
26 
27  if (id.mtdSubDetector() == MTDDetId::BTL) {
28  time_calib += btlTimeOffset_;
29  BTLDetId hitId(id);
30  //for BTL topology gives different layout id
32  const MTDGeomDet* thedet = geom_->idToDet(geoId);
33 
34  if (thedet == nullptr) {
35  throw cms::Exception("MTDTimeCalib") << "GeographicalID: " << std::hex << geoId.rawId() << " (" << id.rawId()
36  << ") is invalid!" << std::dec << std::endl;
37  }
38  const ProxyMTDTopology& topoproxy = static_cast<const ProxyMTDTopology&>(thedet->topology());
39  const RectangularMTDTopology& topo = static_cast<const RectangularMTDTopology&>(topoproxy.specificTopology());
40 
42  if (static_cast<int>(btlL) >= static_cast<int>(BTLDetId::CrysLayout::barphiflat)) {
43  //for bars in phi
44  time_calib -= 0.5 * topo.pitch().first * btlLightCollSlope_; //time offset for bar time is L/2v
45  } else {
46  throw cms::Exception("MTDTimeCalib")
47  << "BTL topology mode " << static_cast<int>(btlL) << " unsupported! Aborting";
48  }
49  } else if (id.mtdSubDetector() == MTDDetId::ETL) {
50  time_calib += etlTimeOffset_;
51  } else {
52  throw cms::Exception("MTDTimeCalib") << "MTDDetId: " << std::hex << id.rawId() << " is invalid!" << std::dec
53  << std::endl;
54  }
55 
56  return time_calib;
57 }
58 
60 
61 //--- Now use the Framework macros to set it all up:
int getMTDTopologyMode() const
Definition: MTDTopology.h:27
float etlTimeOffset_
Definition: MTDTimeCalib.h:24
CrysLayout
Definition: BTLDetId.h:46
virtual const Topology & topology() const
Definition: GeomDet.cc:67
float btlLightCollSlope_
Definition: MTDTimeCalib.h:28
virtual const PixelTopology & specificTopology() const
Detector identifier base class for the MIP Timing Layer.
Definition: MTDDetId.h:21
MTDTimeCalib(edm::ParameterSet const &conf, const MTDGeometry *geom, const MTDTopology *topo)
Definition: MTDTimeCalib.cc:11
const MTDGeomDet * idToDet(DetId) const override
Definition: MTDGeometry.cc:171
const MTDTopology * topo_
Definition: MTDTimeCalib.h:22
float btlTimeOffset_
Definition: MTDTimeCalib.h:23
Definition: DetId.h:17
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
std::pair< float, float > pitch() const override
#define TYPELOOKUP_DATA_REG(_dataclass_)
Definition: typelookup.h:102
const MTDGeometry * geom_
Definition: MTDTimeCalib.h:21
Detector identifier class for the Barrel Timing Layer. The crystal count must start from 0...
Definition: BTLDetId.h:19
BTLDetId::CrysLayout crysLayoutFromTopoMode(const int &topoMode)
BTLDetId geographicalId(CrysLayout lay) const
Definition: BTLDetId.cc:3
float getTimeCalib(const MTDDetId &id) const
Definition: MTDTimeCalib.cc:19