CMS 3D CMS Logo

RPCSimAverageNoise.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  frate = config.getParameter<double>("Frate");
53 
54  if (rpcdigiprint) {
55  std::cout << "Average Efficiency = " << aveEff << std::endl;
56  std::cout << "Average Cluster Size = " << aveCls << " strips" << std::endl;
57  std::cout << "RPC Time Resolution = " << resRPC << " ns" << std::endl;
58  std::cout << "RPC Signal formation time = " << timOff << " ns" << std::endl;
59  std::cout << "RPC adjacent strip delay = " << dtimCs << " ns" << std::endl;
60  std::cout << "Electronic Jitter = " << resEle << " ns" << std::endl;
61  std::cout << "Signal propagation time = " << sspeed << " x c" << std::endl;
62  std::cout << "Link Board Gate Width = " << lbGate << " ns" << std::endl;
63  }
64 
65  _rpcSync = new RPCSynchronizer(config);
66 }
67 
69 
70 int RPCSimAverageNoise::getClSize(float posX, CLHEP::HepRandomEngine* engine) {
71  std::map<int, std::vector<double> > clsMap = getRPCSimSetUp()->getClsMap();
72 
73  int cnt = 1;
74  int min = 1;
75  double func = 0.0;
76  std::vector<double> sum_clsize;
77 
78  double rr_cl = CLHEP::RandFlat::shoot(engine);
79  if (0.0 <= posX && posX < 0.2) {
80  func = (clsMap[1])[(clsMap[1]).size() - 1] * (rr_cl);
81  sum_clsize = clsMap[1];
82  }
83  if (0.2 <= posX && posX < 0.4) {
84  func = (clsMap[2])[(clsMap[2]).size() - 1] * (rr_cl);
85  sum_clsize = clsMap[2];
86  }
87  if (0.4 <= posX && posX < 0.6) {
88  func = (clsMap[3])[(clsMap[3]).size() - 1] * (rr_cl);
89  sum_clsize = clsMap[3];
90  }
91  if (0.6 <= posX && posX < 0.8) {
92  func = (clsMap[4])[(clsMap[4]).size() - 1] * (rr_cl);
93  sum_clsize = clsMap[4];
94  }
95  if (0.8 <= posX && posX < 1.0) {
96  func = (clsMap[5])[(clsMap[5]).size() - 1] * (rr_cl);
97  sum_clsize = clsMap[5];
98  }
99 
100  for (vector<double>::iterator iter = sum_clsize.begin(); iter != sum_clsize.end(); ++iter) {
101  cnt++;
102  if (func > (*iter)) {
103  min = cnt;
104  } else if (func < (*iter)) {
105  break;
106  }
107  }
108  return min;
109 }
110 
112  const edm::PSimHitContainer& rpcHits,
113  CLHEP::HepRandomEngine* engine) {
116  theDetectorHitMap.clear();
118 
119  const Topology& topology = roll->specs()->topology();
120 
121  for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin(); _hit != rpcHits.end(); ++_hit) {
122  // Here I hould check if the RPC are up side down;
123  const LocalPoint& entr = _hit->entryPoint();
124  int time_hit = _rpcSync->getSimHitBx(&(*_hit), engine);
125  float posX = roll->strip(_hit->localPosition()) - static_cast<int>(roll->strip(_hit->localPosition()));
126 
127  // Effinciecy
128 
129  if (CLHEP::RandFlat::shoot(engine) < aveEff) {
130  int centralStrip = topology.channel(entr) + 1;
131  int fstrip = centralStrip;
132  int lstrip = centralStrip;
133  // Compute the cluster size
134  //double w = CLHEP::RandFlat::shoot(engine);
135  //if (w < 1.e-10) w=1.e-10;
136  int clsize = this->getClSize(posX, engine);
137 
138  std::vector<int> cls;
139  cls.push_back(centralStrip);
140  if (clsize > 1) {
141  for (int cl = 0; cl < (clsize - 1) / 2; cl++) {
142  if (centralStrip - cl - 1 >= 1) {
143  fstrip = centralStrip - cl - 1;
144  cls.push_back(fstrip);
145  }
146  if (centralStrip + cl + 1 <= roll->nstrips()) {
147  lstrip = centralStrip + cl + 1;
148  cls.push_back(lstrip);
149  }
150  }
151  if (clsize % 2 == 0) {
152  // insert the last strip according to the
153  // simhit position in the central strip
154  double deltaw = roll->centreOfStrip(centralStrip).x() - entr.x();
155  if (deltaw < 0.) {
156  if (lstrip < roll->nstrips()) {
157  lstrip++;
158  cls.push_back(lstrip);
159  }
160  } else {
161  if (fstrip > 1) {
162  fstrip--;
163  cls.push_back(fstrip);
164  }
165  }
166  }
167  }
168 
169  for (std::vector<int>::iterator i = cls.begin(); i != cls.end(); i++) {
170  // Check the timing of the adjacent strip
171  std::pair<int, int> digi(*i, time_hit);
172 
173  theDetectorHitMap.insert(DetectorHitMap::value_type(digi, &(*_hit)));
174  strips.insert(digi);
175  }
176  }
177  }
178 }
179 
180 void RPCSimAverageNoise::simulateNoise(const RPCRoll* roll, CLHEP::HepRandomEngine* engine) {
181  RPCDetId rpcId = roll->id();
182  std::vector<float> vnoise = (getRPCSimSetUp())->getNoise(rpcId.rawId());
183  unsigned int nstrips = roll->nstrips();
184 
185  double area = 0.0;
186 
187  if (rpcId.region() == 0) {
188  const RectangularStripTopology* top_ = dynamic_cast<const RectangularStripTopology*>(&(roll->topology()));
189  float xmin = (top_->localPosition(0.)).x();
190  float xmax = (top_->localPosition((float)roll->nstrips())).x();
191  float striplength = (top_->stripLength());
192  area = striplength * (xmax - xmin);
193  } else {
194  const TrapezoidalStripTopology* top_ = dynamic_cast<const TrapezoidalStripTopology*>(&(roll->topology()));
195  float xmin = (top_->localPosition(0.)).x();
196  float xmax = (top_->localPosition((float)roll->nstrips())).x();
197  float striplength = (top_->stripLength());
198  area = striplength * (xmax - xmin);
199  }
200  for (unsigned int j = 0; j < vnoise.size(); ++j) {
201  if (j >= nstrips)
202  break;
203 
204  double ave = frate * vnoise[j] * nbxing * gate * area * 1.0e-9;
205  CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
206  N_hits = randPoissonQ.fire();
207 
208  for (int i = 0; i < N_hits; i++) {
209  int time_hit = (static_cast<int>(CLHEP::RandFlat::shoot(engine, (nbxing * gate) / gate))) - nbxing / 2;
210  std::pair<int, int> digi(j + 1, time_hit);
211  strips.insert(digi);
212  }
213  }
214 }
T getParameter(std::string const &) const
float strip(const LocalPoint &lp) const
Definition: RPCRoll.cc:35
const Topology & topology() const override
Definition: RPCRollSpecs.cc:36
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:26
LocalPoint localPosition(float strip) const override
CaloTopology const * topology(0)
DetectorHitMap theDetectorHitMap
Definition: RPCSim.h:68
void setRPCSimSetUp(RPCSimSetUp *simsetup)
int nstrips() const
Definition: RPCRoll.cc:24
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
LocalPoint localPosition(float strip) const override
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:45
std::map< int, std::vector< double > > clsMap
Definition: config.py:1
const RPCRollSpecs * specs() const
Definition: RPCRoll.cc:14
const Topology & topology() const override
Definition: RPCRoll.cc:18
int getSimHitBx(const PSimHit *, CLHEP::HepRandomEngine *)
int getClSize(float posX, CLHEP::HepRandomEngine *)
edm::DetSet< RPCDigiSimLink > RPCDigiSimLinks
Definition: RPCSim.h:33
RPCDetId id() const
Definition: RPCRoll.cc:16
std::set< std::pair< int, int > > strips
Definition: RPCSim.h:55
void simulateNoise(const RPCRoll *, CLHEP::HepRandomEngine *) override
const std::map< int, std::vector< double > > & getClsMap()
Definition: RPCSimSetUp.cc:413
float stripLength() const override
det heigth (strip length in the middle)
Definition: RPCSim.h:30
void simulate(const RPCRoll *roll, const edm::PSimHitContainer &rpcHits, CLHEP::HepRandomEngine *) override
T min(T a, T b)
Definition: MathUtil.h:58
RPCSimAverageNoise(const edm::ParameterSet &config)
~RPCSimAverageNoise() override
RPCSynchronizer * _rpcSync
void clear()
Definition: DetSet.h:72
std::vector< PSimHit > PSimHitContainer
T x() const
Definition: PV3DBase.h:59
RPCDigiSimLinks theRpcDigiSimLinks
Definition: RPCSim.h:70
std::vector< double > sum_clsize
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
float stripLength() const override