CMS 3D CMS Logo

RPCSimAverage.cc
Go to the documentation of this file.
4 
8 
9 #include <cmath>
10 
17 
24 
25 #include <cstring>
26 #include <iostream>
27 #include <fstream>
28 #include <string>
29 #include <vector>
30 #include <cstdlib>
31 #include <utility>
32 #include <map>
33 
34 #include "CLHEP/Random/RandFlat.h"
35 #include "CLHEP/Random/RandPoissonQ.h"
36 
37 using namespace std;
38 
40  aveEff = config.getParameter<double>("averageEfficiency");
41  aveCls = config.getParameter<double>("averageClusterSize");
42  resRPC = config.getParameter<double>("timeResolution");
43  timOff = config.getParameter<double>("timingRPCOffset");
44  dtimCs = config.getParameter<double>("deltatimeAdjacentStrip");
45  resEle = config.getParameter<double>("timeJitter");
46  sspeed = config.getParameter<double>("signalPropagationSpeed");
47  lbGate = config.getParameter<double>("linkGateWidth");
48  rpcdigiprint = config.getParameter<bool>("printOutDigitizer");
49  rate = config.getParameter<double>("Rate");
50  nbxing = config.getParameter<int>("Nbxing");
51  gate = config.getParameter<double>("Gate");
52 
53  if (rpcdigiprint) {
54  std::cout << "Average Efficiency = " << aveEff << std::endl;
55  std::cout << "Average Cluster Size = " << aveCls << " strips" << std::endl;
56  std::cout << "RPC Time Resolution = " << resRPC << " ns" << std::endl;
57  std::cout << "RPC Signal formation time = " << timOff << " ns" << std::endl;
58  std::cout << "RPC adjacent strip delay = " << dtimCs << " ns" << std::endl;
59  std::cout << "Electronic Jitter = " << resEle << " ns" << std::endl;
60  std::cout << "Signal propagation time = " << sspeed << " x c" << std::endl;
61  std::cout << "Link Board Gate Width = " << lbGate << " ns" << std::endl;
62  }
63 
65 }
66 
68 
69 int RPCSimAverage::getClSize(float posX, CLHEP::HepRandomEngine* engine) {
70  std::map<int, std::vector<double> > clsMap = getRPCSimSetUp()->getClsMap();
71 
72  int cnt = 1;
73  int min = 1;
74  double func = 0.0;
75  std::vector<double> sum_clsize;
76 
77  double rr_cl = CLHEP::RandFlat::shoot(engine);
78  if (0.0 <= posX && posX < 0.2) {
79  func = (clsMap[1])[(clsMap[1]).size() - 1] * (rr_cl);
80  sum_clsize = clsMap[1];
81  }
82  if (0.2 <= posX && posX < 0.4) {
83  func = (clsMap[2])[(clsMap[2]).size() - 1] * (rr_cl);
84  sum_clsize = clsMap[2];
85  }
86  if (0.4 <= posX && posX < 0.6) {
87  func = (clsMap[3])[(clsMap[3]).size() - 1] * (rr_cl);
88  sum_clsize = clsMap[3];
89  }
90  if (0.6 <= posX && posX < 0.8) {
91  func = (clsMap[4])[(clsMap[4]).size() - 1] * (rr_cl);
92  sum_clsize = clsMap[4];
93  }
94  if (0.8 <= posX && posX < 1.0) {
95  func = (clsMap[5])[(clsMap[5]).size() - 1] * (rr_cl);
96  sum_clsize = clsMap[5];
97  }
98 
99  for (vector<double>::iterator iter = sum_clsize.begin(); iter != sum_clsize.end(); ++iter) {
100  cnt++;
101  if (func > (*iter)) {
102  min = cnt;
103  } else if (func < (*iter)) {
104  break;
105  }
106  }
107  return min;
108 }
109 
111  const edm::PSimHitContainer& rpcHits,
112  CLHEP::HepRandomEngine* engine) {
115  theDetectorHitMap.clear();
117 
118  const Topology& topology = roll->specs()->topology();
119 
120  for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin(); _hit != rpcHits.end(); ++_hit) {
121  // Here I hould check if the RPC are up side down;
122  const LocalPoint& entr = _hit->entryPoint();
123 
124  // const LocalPoint& exit=_hit->exitPoint();
125 
126  float posX = roll->strip(_hit->localPosition()) - static_cast<int>(roll->strip(_hit->localPosition()));
127  int time_hit = _rpcSync->getSimHitBx(&(*_hit), engine);
128 
129  // Effinciecy
130 
131  if (CLHEP::RandFlat::shoot(engine) < aveEff) {
132  int centralStrip = topology.channel(entr) + 1;
133  int fstrip = centralStrip;
134  int lstrip = centralStrip;
135  // Compute the cluster size
136  //double w = CLHEP::RandFlat::shoot(engine);
137  //if (w < 1.e-10) w=1.e-10;
138  int clsize = this->getClSize(posX, engine);
139 
140  std::vector<int> cls;
141  cls.push_back(centralStrip);
142  if (clsize > 1) {
143  for (int cl = 0; cl < (clsize - 1) / 2; cl++)
144  if (centralStrip - cl - 1 >= 1) {
145  fstrip = centralStrip - cl - 1;
146  cls.push_back(fstrip);
147  }
148  for (int cl = 0; cl < (clsize - 1) / 2; cl++)
149  if (centralStrip + cl + 1 <= roll->nstrips()) {
150  lstrip = centralStrip + cl + 1;
151  cls.push_back(lstrip);
152  }
153  if (clsize % 2 == 0) {
154  // insert the last strip according to the
155  // simhit position in the central strip
156  double deltaw = roll->centreOfStrip(centralStrip).x() - entr.x();
157  if (deltaw < 0.) {
158  if (lstrip < roll->nstrips()) {
159  lstrip++;
160  cls.push_back(lstrip);
161  }
162  } else {
163  if (fstrip > 1) {
164  fstrip--;
165  cls.push_back(fstrip);
166  }
167  }
168  }
169  }
170 
171  for (std::vector<int>::iterator i = cls.begin(); i != cls.end(); i++) {
172  // Check the timing of the adjacent strip
173  std::pair<int, int> digi(*i, time_hit);
174  theDetectorHitMap.insert(DetectorHitMap::value_type(digi, &(*_hit)));
175  strips.insert(digi);
176  }
177  }
178  }
179 }
180 
181 void RPCSimAverage::simulateNoise(const RPCRoll* roll, CLHEP::HepRandomEngine* engine) {
182  RPCDetId rpcId = roll->id();
183  int nstrips = roll->nstrips();
184  double area = 0.0;
185 
186  if (rpcId.region() == 0) {
187  const RectangularStripTopology* top_ = dynamic_cast<const RectangularStripTopology*>(&(roll->topology()));
188  float xmin = (top_->localPosition(0.)).x();
189  float xmax = (top_->localPosition((float)roll->nstrips())).x();
190  float striplength = (top_->stripLength());
191  area = striplength * (xmax - xmin);
192  } else {
193  const TrapezoidalStripTopology* top_ = dynamic_cast<const TrapezoidalStripTopology*>(&(roll->topology()));
194  float xmin = (top_->localPosition(0.)).x();
195  float xmax = (top_->localPosition((float)roll->nstrips())).x();
196  float striplength = (top_->stripLength());
197  area = striplength * (xmax - xmin);
198  }
199 
200  double ave = rate * nbxing * gate * area * 1.0e-9;
201 
202  CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
203  N_hits = randPoissonQ.fire();
204 
205  for (int i = 0; i < N_hits; i++) {
206  int strip = static_cast<int>(CLHEP::RandFlat::shoot(engine, 1, nstrips));
207  int time_hit;
208  time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (nbxing * gate) / gate))) - nbxing / 2;
209  std::pair<int, int> digi(strip, time_hit);
210  strips.insert(digi);
211  }
212 }
RPCRoll
Definition: RPCRoll.h:12
RPCSynchronizer::setRPCSimSetUp
void setRPCSimSetUp(RPCSimSetUp *simsetup)
Definition: RPCSynchronizer.h:43
RPCSimAverage::resEle
double resEle
Definition: RPCSimAverage.h:47
RPCSim::getRPCSimSetUp
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:45
mps_fire.i
i
Definition: mps_fire.py:355
TrapezoidalStripTopology::stripLength
float stripLength() const override
det heigth (strip length in the middle)
Definition: TrapezoidalStripTopology.h:63
RPCDetId::region
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
ESHandle.h
RPCSimAverage::RPCSimAverage
RPCSimAverage(const edm::ParameterSet &config)
Definition: RPCSimAverage.cc:39
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
min
T min(T a, T b)
Definition: MathUtil.h:58
edm::DetSet::clear
void clear()
Definition: DetSet.h:71
digitizers_cfi.strip
strip
Definition: digitizers_cfi.py:19
RPCDetId
Definition: RPCDetId.h:16
RPCSimAverage::getClSize
int getClSize(float posX, CLHEP::HepRandomEngine *)
Definition: RPCSimAverage.cc:69
gather_cfg.cout
cout
Definition: gather_cfg.py:144
RPCSynchronizer
Definition: RPCSynchronizer.h:36
PSimHitContainer.h
RPCSimAverage::clsMap
std::map< int, std::vector< double > > clsMap
Definition: RPCSimAverage.h:57
RPCSynchronizer::getSimHitBx
int getSimHitBx(const PSimHit *, CLHEP::HepRandomEngine *)
Definition: RPCSynchronizer.cc:58
RPCSimAverage::aveCls
double aveCls
Definition: RPCSimAverage.h:43
RPCRoll.h
RPCSimAverage::nbxing
int nbxing
Definition: RPCSimAverage.h:53
RPCSimAverage::lbGate
double lbGate
Definition: RPCSimAverage.h:49
EDAnalyzer.h
DDAxes::x
RPCSim::strips
std::set< std::pair< int, int > > strips
Definition: RPCSim.h:55
RectangularStripTopology.h
RPCSimAverage::simulate
void simulate(const RPCRoll *roll, const edm::PSimHitContainer &rpcHits, CLHEP::HepRandomEngine *) override
Definition: RPCSimAverage.cc:110
RectangularStripTopology::localPosition
LocalPoint localPosition(float strip) const override
Definition: RectangularStripTopology.cc:17
RPCRoll::topology
const Topology & topology() const override
Definition: RPCRoll.cc:18
RPCSimAverage::rate
double rate
Definition: RPCSimAverage.h:54
GetRecoTauVFromDQM_MC_cff.cl
cl
Definition: GetRecoTauVFromDQM_MC_cff.py:38
config
Definition: config.py:1
RPCRoll::id
RPCDetId id() const
Definition: RPCRoll.cc:16
PSimHit.h
RectangularStripTopology
Definition: RectangularStripTopology.h:11
RPCSim::theDetectorHitMap
DetectorHitMap theDetectorHitMap
Definition: RPCSim.h:68
ecaldqm::topology
const CaloTopology * topology(nullptr)
TrapezoidalStripTopology
Definition: TrapezoidalStripTopology.h:21
RPCSim::theRpcDigiSimLinks
RPCDigiSimLinks theRpcDigiSimLinks
Definition: RPCSim.h:70
RPCSimAverage::N_hits
int N_hits
Definition: RPCSimAverage.h:52
RPCRollSpecs::topology
const Topology & topology() const override
Definition: RPCRollSpecs.cc:36
RecoTauValidation_cfi.posX
posX
Definition: RecoTauValidation_cfi.py:288
RPCSimSetUp::getClsMap
const std::map< int, std::vector< double > > & getClsMap()
Definition: RPCSimSetUp.cc:413
RPCSimAverage.h
Point3DBase< float, LocalTag >
RPCRoll::strip
float strip(const LocalPoint &lp) const
Definition: RPCRoll.cc:35
RPCSimAverage::gate
double gate
Definition: RPCSimAverage.h:55
RPCDetId.h
RPCSimAverage::sspeed
double sspeed
Definition: RPCSimAverage.h:48
RPCRoll::centreOfStrip
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:26
RPCSimAverage::sum_clsize
std::vector< double > sum_clsize
Definition: RPCSimAverage.h:58
RectangularStripTopology::stripLength
float stripLength() const override
Definition: RectangularStripTopology.h:44
RPCRollSpecs.h
RPCSimAverage::dtimCs
double dtimCs
Definition: RPCSimAverage.h:46
RPCSimAverage::~RPCSimAverage
~RPCSimAverage() override
Definition: RPCSimAverage.cc:67
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
RPCRoll::nstrips
int nstrips() const
Definition: RPCRoll.cc:24
RPCSimAverage::timOff
double timOff
Definition: RPCSimAverage.h:45
reco::JetExtendedAssociation::value_type
Container::value_type value_type
Definition: JetExtendedAssociation.h:30
RPCSim
Definition: RPCSim.h:30
TrackCollections2monitor_cff.func
func
Definition: TrackCollections2monitor_cff.py:359
RPCSimAverage::aveEff
double aveEff
Definition: RPCSimAverage.h:39
std
Definition: JetResolutionObject.h:76
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
TrapezoidalStripTopology.h
RPCSimAverage::_rpcSync
RPCSynchronizer * _rpcSync
Definition: RPCSimAverage.h:61
Frameworkfwd.h
TrackerOfflineValidation_Dqm_cff.xmax
xmax
Definition: TrackerOfflineValidation_Dqm_cff.py:11
RPCRoll::specs
const RPCRollSpecs * specs() const
Definition: RPCRoll.cc:14
EventSetup.h
TrapezoidalStripTopology::localPosition
LocalPoint localPosition(float strip) const override
Definition: TrapezoidalStripTopology.cc:27
RPCSimAverage::resRPC
double resRPC
Definition: RPCSimAverage.h:44
RPCSimSetUp.h
Topology
Definition: Topology.h:39
edm::PSimHitContainer
std::vector< PSimHit > PSimHitContainer
Definition: PSimHitContainer.h:11
ParameterSet.h
TrackerOfflineValidation_Dqm_cff.xmin
xmin
Definition: TrackerOfflineValidation_Dqm_cff.py:10
MuonGeometryRecord.h
RPCSimAverage::rpcdigiprint
bool rpcdigiprint
Definition: RPCSimAverage.h:50
RPCSim::RPCDigiSimLinks
edm::DetSet< RPCDigiSimLink > RPCDigiSimLinks
Definition: RPCSim.h:33
custom_jme_cff.area
area
Definition: custom_jme_cff.py:169
RPCGeometry.h
RPCSynchronizer.h
RPCSimAverage::simulateNoise
void simulateNoise(const RPCRoll *, CLHEP::HepRandomEngine *) override
Definition: RPCSimAverage.cc:181