CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
ETLDeviceSim Class Reference

#include <ETLDeviceSim.h>

Public Member Functions

 ETLDeviceSim (const edm::ParameterSet &pset, edm::ConsumesCollector iC)
 
void getEvent (const edm::Event &evt)
 
void getEventSetup (const edm::EventSetup &evt)
 
void getHitsResponse (const std::vector< std::tuple< int, uint32_t, float > > &hitRefs, const edm::Handle< edm::PSimHitContainer > &hits, mtd_digitizer::MTDSimHitDataAccumulator *simHitAccumulator, CLHEP::HepRandomEngine *hre)
 

Private Attributes

float bxTime_
 
const MTDGeometrygeom_
 
const edm::ESGetToken< MTDGeometry, MTDDigiGeometryRecordgeomToken_
 
float MIPPerMeV_
 
float tofDelay_
 

Detailed Description

Definition at line 21 of file ETLDeviceSim.h.

Constructor & Destructor Documentation

◆ ETLDeviceSim()

ETLDeviceSim::ETLDeviceSim ( const edm::ParameterSet pset,
edm::ConsumesCollector  iC 
)

Definition at line 15 of file ETLDeviceSim.cc.

16  : geomToken_(iC.esConsumes()),
17  geom_(nullptr),
18  MIPPerMeV_(1.0 / pset.getParameter<double>("meVPerMIP")),
19  bxTime_(pset.getParameter<double>("bxTime")),
20  tofDelay_(pset.getParameter<double>("tofDelay")) {}
const MTDGeometry * geom_
Definition: ETLDeviceSim.h:36
const edm::ESGetToken< MTDGeometry, MTDDigiGeometryRecord > geomToken_
Definition: ETLDeviceSim.h:35
float tofDelay_
Definition: ETLDeviceSim.h:40
float MIPPerMeV_
Definition: ETLDeviceSim.h:38

Member Function Documentation

◆ getEvent()

void ETLDeviceSim::getEvent ( const edm::Event evt)
inline

Definition at line 25 of file ETLDeviceSim.h.

25 {}

◆ getEventSetup()

void ETLDeviceSim::getEventSetup ( const edm::EventSetup evt)

Definition at line 22 of file ETLDeviceSim.cc.

References geom_, geomToken_, and edm::EventSetup::getData().

22 { geom_ = &evs.getData(geomToken_); }
const MTDGeometry * geom_
Definition: ETLDeviceSim.h:36
const edm::ESGetToken< MTDGeometry, MTDDigiGeometryRecord > geomToken_
Definition: ETLDeviceSim.h:35

◆ getHitsResponse()

void ETLDeviceSim::getHitsResponse ( const std::vector< std::tuple< int, uint32_t, float > > &  hitRefs,
const edm::Handle< edm::PSimHitContainer > &  hits,
mtd_digitizer::MTDSimHitDataAccumulator simHitAccumulator,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 24 of file ETLDeviceSim.cc.

References bxTime_, ALCARECOTkAlJpsiMuMu_cff::charge, cuy::col, angle_units::operators::convertGeVToMeV(), angle_units::operators::convertMmToCm(), TauDecayModes::dec, Exception, DetId::Forward, totem::nt2::vfat::geoId(), geom_, hfClusterShapes_cfi::hits, mps_fire::i, MTDGeometry::idToDet(), RectangularMTDTopology::isInPixel(), MIPPerMeV_, ETLDetId::modType(), ETLDetId::module(), MTDDetId::mtdRR(), MTDDetId::mtdSide(), RectangularMTDTopology::pixel(), position, ProxyMTDTopology::specificTopology(), and tofDelay_.

27  {
28  using namespace geant_units::operators;
29 
30  //loop over sorted hits
31  const int nchits = hitRefs.size();
32  for (int i = 0; i < nchits; ++i) {
33  const int hitidx = std::get<0>(hitRefs[i]);
34  const uint32_t id = std::get<1>(hitRefs[i]);
35  const MTDDetId detId(id);
36 
37  // Safety check (this should never happen, it should be an exception
38  if (detId.det() != DetId::Forward || detId.mtdSubDetector() != 2) {
39  throw cms::Exception("ETLDeviceSim")
40  << "got a DetId that was not ETL: Det = " << detId.det() << " subDet = " << detId.mtdSubDetector();
41  }
42 
43  if (id == 0)
44  continue; // to be ignored at RECO level
45 
46  ETLDetId etlid(detId);
47  DetId geoId = ETLDetId(etlid.mtdSide(), etlid.mtdRR(), etlid.module(), etlid.modType());
48  const MTDGeomDet* thedet = geom_->idToDet(geoId);
49  if (thedet == nullptr) {
50  throw cms::Exception("ETLDeviceSim") << "GeographicalID: " << std::hex << geoId.rawId() << " (" << detId.rawId()
51  << ") is invalid!" << std::dec << std::endl;
52  }
53  const ProxyMTDTopology& topoproxy = static_cast<const ProxyMTDTopology&>(thedet->topology());
54  const RectangularMTDTopology& topo = static_cast<const RectangularMTDTopology&>(topoproxy.specificTopology());
55 
56  const float toa = std::get<2>(hitRefs[i]) + tofDelay_;
57  const PSimHit& hit = hits->at(hitidx);
58  const float charge = convertGeVToMeV(hit.energyLoss()) * MIPPerMeV_;
59 
60  // calculate the simhit row and column
61  const auto& position = hit.localPosition();
62  // ETL is already in module-local coordinates so just scale to cm from mm
64  //The following lines check whether the pixel point is actually out of the active area.
65  //If that is the case it simply ignores the point but in the future some more sophisticated function could be applied.
66  if (!topo.isInPixel(simscaled)) {
67  continue;
68  }
69  const auto& thepixel = topo.pixel(simscaled);
70  const uint8_t row(thepixel.first), col(thepixel.second);
71 
72  auto simHitIt =
73  simHitAccumulator->emplace(mtd_digitizer::MTDCellId(id, row, col), mtd_digitizer::MTDCellInfo()).first;
74 
75  // Accumulate in 15 buckets of 25ns (9 pre-samples, 1 in-time, 5 post-samples)
76  const int itime = std::floor(toa / bxTime_) + 9;
77  if (itime < 0 || itime > 14)
78  continue;
79 
80  // Check if time index is ok and store energy
81  if (itime >= (int)simHitIt->second.hit_info[0].size())
82  continue;
83 
84  (simHitIt->second).hit_info[0][itime] += charge;
85 
86  // Store the time of the first SimHit in the right DataFrame bucket
87  const float tof = toa - (itime - 9) * bxTime_;
88 
89  if ((simHitIt->second).hit_info[1][itime] == 0. || tof < (simHitIt->second).hit_info[1][itime]) {
90  (simHitIt->second).hit_info[1][itime] = tof;
91  }
92  }
93 }
uint8_t geoId(const VFATFrame &frame)
retrieve the GEO information for this channel
const MTDGeometry * geom_
Definition: ETLDeviceSim.h:36
bool isInPixel(const LocalPoint &p) const
virtual const PixelTopology & specificTopology() const
Detector identifier base class for the MIP Timing Layer.
Definition: MTDDetId.h:21
std::pair< float, float > pixel(const LocalPoint &p) const override
constexpr NumType convertGeVToMeV(NumType gev)
Definition: angle_units.h:74
const MTDGeomDet * idToDet(DetId) const override
Definition: MTDGeometry.cc:171
Definition: DetId.h:17
constexpr NumType convertMmToCm(NumType millimeters)
Definition: angle_units.h:44
float tofDelay_
Definition: ETLDeviceSim.h:40
Detector identifier class for the Endcap Timing Layer.
Definition: ETLDetId.h:15
static int position[264][3]
Definition: ReadPGInfo.cc:289
col
Definition: cuy.py:1009
float MIPPerMeV_
Definition: ETLDeviceSim.h:38

Member Data Documentation

◆ bxTime_

float ETLDeviceSim::bxTime_
private

Definition at line 39 of file ETLDeviceSim.h.

Referenced by getHitsResponse().

◆ geom_

const MTDGeometry* ETLDeviceSim::geom_
private

Definition at line 36 of file ETLDeviceSim.h.

Referenced by getEventSetup(), and getHitsResponse().

◆ geomToken_

const edm::ESGetToken<MTDGeometry, MTDDigiGeometryRecord> ETLDeviceSim::geomToken_
private

Definition at line 35 of file ETLDeviceSim.h.

Referenced by getEventSetup().

◆ MIPPerMeV_

float ETLDeviceSim::MIPPerMeV_
private

Definition at line 38 of file ETLDeviceSim.h.

Referenced by getHitsResponse().

◆ tofDelay_

float ETLDeviceSim::tofDelay_
private

Definition at line 40 of file ETLDeviceSim.h.

Referenced by getHitsResponse().