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 (btlL == BTLDetId::CrysLayout::tile) {
43  time_calib -= btlLightCollTime_; //simply remove the offset introduced at sim level
44  } else if (btlL == BTLDetId::CrysLayout::bar || btlL == BTLDetId::CrysLayout::barphiflat ||
45  btlL == BTLDetId::CrysLayout::v2) {
46  //for bars in phi
47  time_calib -= 0.5 * topo.pitch().first * btlLightCollSlope_; //time offset for bar time is L/2v
48  } else if (btlL == BTLDetId::CrysLayout::barzflat) {
49  //for bars in z
50  time_calib -= 0.5 * topo.pitch().second * btlLightCollSlope_; //time offset for bar time is L/2v
51  }
52  } else if (id.mtdSubDetector() == MTDDetId::ETL) {
53  time_calib += etlTimeOffset_;
54  } else {
55  throw cms::Exception("MTDTimeCalib") << "MTDDetId: " << std::hex << id.rawId() << " is invalid!" << std::dec
56  << std::endl;
57  }
58 
59  return time_calib;
60 }
61 
63 
64 //--- Now use the Framework macros to set it all up:
uint8_t geoId(const VFATFrame &frame)
retrieve the GEO information for this channel
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
float btlLightCollTime_
Definition: MTDTimeCalib.h:27
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
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