CMS 3D CMS Logo

BTLDeviceSim.cc
Go to the documentation of this file.
1 #include "CLHEP/Units/GlobalPhysicalConstants.h"
5 
6 #include "CLHEP/Random/RandGaussQ.h"
7 #include "CLHEP/Units/GlobalPhysicalConstants.h"
8 
9 #include <iostream>
10 
12  refSpeed_( 0.1*CLHEP::c_light ),
13  bxTime_(pset.getParameter<double>("bxTime") ),
14  LightYield_(pset.getParameter<double>("LightYield")),
15  LightCollEff_(pset.getParameter<double>("LightCollectionEff")),
16  LightCollTime_(pset.getParameter<double>("LightCollectionTime")),
17  smearLightCollTime_(pset.getParameter<double>("smearLightCollectionTime")),
18  PDE_(pset.getParameter<double>("PhotonDetectionEff")) { }
19 
20 
21 void BTLDeviceSim::getHitsResponse(const std::vector<std::tuple<int,uint32_t,float> > &hitRefs,
23  mtd_digitizer::MTDSimHitDataAccumulator *simHitAccumulator,
24  CLHEP::HepRandomEngine *hre){
25 
26  //loop over sorted simHits
27  const int nchits = hitRefs.size();
28  for(int ihit=0; ihit<nchits; ++ihit) {
29 
30  const int hitidx = std::get<0>(hitRefs[ihit]);
31  const uint32_t id = std::get<1>(hitRefs[ihit]);
32  const MTDDetId detId(id);
33  const PSimHit &hit = hits->at( hitidx );
34 
35  // --- Safety check on the detector ID
36  if ( detId.det()!=DetId::Forward || detId.mtdSubDetector()!=1 ) continue;
37 
38  // --- Store the detector element ID as a key of the MTDSimHitDataAccumulator map
39  auto simHitIt = simHitAccumulator->emplace(id,mtd_digitizer::MTDCellInfo()).first;
40 
41  // --- Get the simHit energy and convert it from MeV to photo-electrons
42  float Npe = 1000.*hit.energyLoss()*LightYield_*LightCollEff_*PDE_;
43 
44  // --- Get the distance to the center of the detector
45  const float dist2center = 0.1f*hit.entryPoint().mag();
46 
47  // --- Get the simHit time of arrival and correct for the nominal time of flight
48  float toa = std::get<2>(hitRefs[ihit]) - dist2center/refSpeed_ + LightCollTime_;
49 
50  if ( smearLightCollTime_ > 0. )
51  toa += CLHEP::RandGaussQ::shoot(hre, 0., smearLightCollTime_);
52 
53  // --- Accumulate in 15 buckets of 25 ns (9 pre-samples, 1 in-time, 5 post-samples)
54  const int itime = std::floor( toa/bxTime_ ) + 9;
55 
56  if(itime<0 || itime>14) continue;
57 
58  // --- Check if the time index is ok and accumulate the energy
59  if(itime >= (int)simHitIt->second.hit_info[0].size() ) continue;
60  (simHitIt->second).hit_info[0][itime] += Npe;
61 
62 
63  // --- Store the time of the first SimHit
64  if( (simHitIt->second).hit_info[1][itime] == 0 )
65  (simHitIt->second).hit_info[1][itime] = toa;
66 
67  } // ihit loop
68 
69 }
const float LightYield_
Definition: BTLDeviceSim.h:37
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)
Definition: BTLDeviceSim.cc:21
const float refSpeed_
Definition: BTLDeviceSim.h:35
Detector identifier base class for the MIP Timing Layer.
Definition: MTDDetId.h:21
T mag() const
Definition: PV3DBase.h:67
BTLDeviceSim(const edm::ParameterSet &pset)
Definition: BTLDeviceSim.cc:11
const float smearLightCollTime_
Definition: BTLDeviceSim.h:40
const float bxTime_
Definition: BTLDeviceSim.h:36
const float LightCollTime_
Definition: BTLDeviceSim.h:39
const float PDE_
Definition: BTLDeviceSim.h:41
float energyLoss() const
The energy deposit in the PSimHit, in ???.
Definition: PSimHit.h:75
std::unordered_map< uint32_t, MTDCellInfo > MTDSimHitDataAccumulator
const float LightCollEff_
Definition: BTLDeviceSim.h:38
Local3DPoint entryPoint() const
Entry point in the local Det frame.
Definition: PSimHit.h:35