CMS 3D CMS Logo

RPCSimModelTiming.cc
Go to the documentation of this file.
5 
10 
11 #include <cmath>
12 
19 
26 
27 #include <cstring>
28 #include <iostream>
29 #include <fstream>
30 #include <string>
31 #include <vector>
32 #include <cstdlib>
33 #include <utility>
34 #include <map>
35 
36 #include "CLHEP/Random/RandFlat.h"
37 #include "CLHEP/Random/RandPoissonQ.h"
38 #include "CLHEP/Random/RandGaussQ.h"
39 
41 
43 {
44  aveEff = config.getParameter<double>("averageEfficiency");
45  aveCls = config.getParameter<double>("averageClusterSize");
46  resRPC = config.getParameter<double>("timeResolution");
47  timOff = config.getParameter<double>("timingRPCOffset");
48  dtimCs = config.getParameter<double>("deltatimeAdjacentStrip");
49  resEle = config.getParameter<double>("timeJitter");
50  sspeed = config.getParameter<double>("signalPropagationSpeed");
51  lbGate = config.getParameter<double>("linkGateWidth");
52  rpcdigiprint = config.getParameter<bool>("printOutDigitizer");
53 
54  rate=config.getParameter<double>("Rate");
55  nbxing=config.getParameter<int>("Nbxing");
56  gate=config.getParameter<double>("Gate");
57  frate=config.getParameter<double>("Frate");
58  do_Y = config.getParameter<bool>("do_Y_coordinate");
59  sigmaY = config.getParameter<double>("sigmaY");
60 
61  if (rpcdigiprint) {
62  edm::LogInfo("RPC digitizer parameters") <<"Average Efficiency = "<<aveEff;
63  edm::LogInfo("RPC digitizer parameters") <<"Average Cluster Size = "<<aveCls<<" strips";
64  edm::LogInfo("RPC digitizer parameters") <<"RPC Time Resolution = "<<resRPC<<" ns";
65  edm::LogInfo("RPC digitizer parameters") <<"RPC Signal formation time = "<<timOff<<" ns";
66  edm::LogInfo("RPC digitizer parameters") <<"RPC adjacent strip delay = "<<dtimCs<<" ns";
67  edm::LogInfo("RPC digitizer parameters") <<"Electronic Jitter = "<<resEle<<" ns";
68  edm::LogInfo("RPC digitizer parameters") <<"Signal propagation time = "<<sspeed<<" x c";
69  edm::LogInfo("RPC digitizer parameters") <<"Link Board Gate Width = "<<lbGate<<" ns";
70  }
71 
72  _rpcSync = new RPCSynchronizer(config);
73 
74 }
75 
77 {
78  delete _rpcSync;
79 }
80 
82  const edm::PSimHitContainer& rpcHits,
83  CLHEP::HepRandomEngine* engine)
84 {
85 
88  theDetectorHitMap.clear();
90 
91  RPCDetId rpcId = roll->id();
92  RPCGeomServ RPCname(rpcId);
93 
94  const Topology& topology=roll->specs()->topology();
95 
96  for (edm::PSimHitContainer::const_iterator _hit = rpcHits.begin();
97  _hit != rpcHits.end(); ++_hit){
98 
99  if(!eledig && _hit-> particleType() == 11) continue;
100  // Here I hould check if the RPC are up side down;
101  const LocalPoint& entr=_hit->entryPoint();
102 
103  int time_hit = _rpcSync->getSimHitBxAndTimingForIRPC(&(*_hit), engine);
104  double precise_time = _rpcSync->getSmearedTime();
105 
106  float posX = roll->strip(_hit->localPosition()) - static_cast<int>(roll->strip(_hit->localPosition()));
107 
108  std::vector<float> veff = (getRPCSimSetUp())->getEff(rpcId.rawId());
109 
110  // Effinciecy
111  int centralStrip = topology.channel(entr)+1;;
112  float fire = CLHEP::RandFlat::shoot(engine);
113 
114  float smearedPositionY = CLHEP::RandGaussQ::shoot(engine,_hit->localPosition().y(),sigmaY);
115 
116  if (fire < veff[centralStrip-1]) {
117 
118  int fstrip=centralStrip;
119  int lstrip=centralStrip;
120 
121  // Compute the cluster size
122  int clsize = this->getClSize(rpcId.rawId(),posX, engine); // This is for cluster size chamber by chamber
123  std::vector<int> cls;
124  cls.push_back(centralStrip);
125  if (clsize > 1){
126  for (int cl = 0; cl < (clsize-1)/2; cl++){
127  if (centralStrip - cl -1 >= 1 ){
128  fstrip = centralStrip-cl-1;
129  cls.push_back(fstrip);
130  }
131  if (centralStrip + cl + 1 <= roll->nstrips() ){
132  lstrip = centralStrip+cl+1;
133  cls.push_back(lstrip);
134  }
135  }
136  if (clsize%2 == 0 ){
137  // insert the last strip according to the
138  // simhit position in the central strip
139  int lr = LeftRightNeighbour(*roll, entr, centralStrip);
140  if (lr==1) {
141  if (lstrip < roll->nstrips() ){
142  lstrip++;
143  cls.push_back(lstrip);
144  }
145  }else{
146  if (fstrip > 1 ){
147  fstrip--;
148  cls.push_back(fstrip);
149  }
150  }
151  }
152  }
153 
154  //digitize all the strips in the cluster
155  //in the previuos version some strips were dropped
156  //leading to un-physical "shift" of the cluster
157  for (std::vector<int>::iterator i=cls.begin(); i!=cls.end();i++){
158  std::pair<int, int> digi(*i,time_hit);
159  RPCDigi adigi(*i,time_hit);
160  adigi.hasTime(true);
161  adigi.setTime(precise_time);
162  if(do_Y)
163  {
164  adigi.hasY(true);
165  adigi.setY(smearedPositionY);
166  adigi.setDeltaY(sigmaY);
167  }
168  irpc_digis.insert(adigi);
169  theDetectorHitMap.insert(DetectorHitMap::value_type(digi,&(*_hit)));
170  }
171  }
172  }
173 }
174 
175 
177  CLHEP::HepRandomEngine* engine)
178 {
179  RPCDetId rpcId = roll->id();
180  RPCGeomServ RPCname(rpcId);
181  std::vector<float> vnoise = (getRPCSimSetUp())->getNoise(rpcId.rawId());
182  std::vector<float> veff = (getRPCSimSetUp())->getEff(rpcId.rawId());
183  unsigned int nstrips = roll->nstrips();
184  double area = 0.0;
185  float striplength, xmin,xmax ;
186  if ( rpcId.region() == 0 )
187  {
188  const RectangularStripTopology* top_ = dynamic_cast<const
189  RectangularStripTopology*>(&(roll->topology()));
190  xmin = (top_->localPosition(0.)).x();
191  xmax = (top_->localPosition((float)roll->nstrips())).x();
192  striplength = (top_->stripLength());
193  area = striplength*(xmax-xmin);
194  }
195  else
196  {
197  const TrapezoidalStripTopology* top_=dynamic_cast<const TrapezoidalStripTopology*>(&(roll->topology()));
198  xmin = (top_->localPosition(0.)).x();
199  xmax = (top_->localPosition((float)roll->nstrips())).x();
200  striplength = (top_->stripLength());
201  area = striplength*(xmax-xmin);
202  }
203 
204  for(unsigned int j = 0; j < vnoise.size(); ++j){
205 
206  if(j >= nstrips) break;
207 
208  double ave =
209  vnoise[j]*nbxing*gate*area*1.0e-9*frate/((float)roll->nstrips());
210 
211  CLHEP::RandPoissonQ randPoissonQ(*engine, ave);
212  N_hits = randPoissonQ.fire();
213  for (int i = 0; i < N_hits; i++ ){
214 
215 
216  double precise_time = CLHEP::RandFlat::shoot(engine, (nbxing*gate)/gate);
217  int time_hit = (static_cast<int>(precise_time)) - nbxing/2;
218  RPCDigi adigi(j+1,time_hit);
219  adigi.hasTime(true);
220  adigi.setTime(precise_time);
221  if(do_Y)
222  {
223  double positionY = CLHEP::RandFlat::shoot(engine,striplength);
224  positionY-=striplength/2;
225  adigi.hasY(true);
226  adigi.setY(positionY);
227  adigi.setDeltaY(sigmaY);
228  }
229  irpc_digis.insert(adigi);
230 
231  }
232  }
233 }
234 
235 
236 int RPCSimModelTiming::getClSize(uint32_t id,float posX, CLHEP::HepRandomEngine* engine)
237 {
238  std::vector<double> clsForDetId = getRPCSimSetUp()->getCls(id);
239 
240  int cnt = 1;
241  int min = 1;
242  double func=0.0;
243  std::vector<double> sum_clsize;
244 
245  sum_clsize.clear();
246  sum_clsize = clsForDetId;
247  int vectOffset(0);
248 
249  double rr_cl = CLHEP::RandFlat::shoot(engine);
250 
251  if(0.0 <= posX && posX < 0.2) {
252  func = clsForDetId[19]*(rr_cl);
253  vectOffset = 0;
254  }
255  if(0.2 <= posX && posX < 0.4) {
256  func = clsForDetId[39]*(rr_cl);
257  vectOffset = 20;
258  }
259  if(0.4 <= posX && posX < 0.6) {
260  func = clsForDetId[59]*(rr_cl);
261  vectOffset = 40;
262  }
263  if(0.6 <= posX && posX < 0.8) {
264  func = clsForDetId[79]*(rr_cl);
265  vectOffset = 60;
266  }
267  if(0.8 <= posX && posX < 1.0) {
268  func = clsForDetId[89]*(rr_cl);
269  vectOffset = 80;
270  }
271 
272 
273  for(int i = vectOffset; i<(vectOffset+20); i++){
274  cnt++;
275  if(func > clsForDetId[i]){
276  min = cnt;
277  }
278  else if(func < clsForDetId[i]){
279  break;
280  }
281  }
282  return min;
283 }
284 
285 int RPCSimModelTiming::LeftRightNeighbour(const RPCRoll& roll, const LocalPoint & hit_pos, int strip){
286 
287  //if left return -1
288  //if right return +1
289 
290  int leftStrip = strip-1;
291  int rightStrip = strip+1;
292 
293  if(leftStrip<0)
294  return +1;
295  if( rightStrip > roll.nstrips())
296  return -1;
297 
298  double deltawL = fabs((roll.centreOfStrip(leftStrip)).x()-hit_pos.x());
299  double deltawR = fabs((roll.centreOfStrip(rightStrip)).x()-hit_pos.x());
300 
301  if(deltawL>=deltawR){
302  return +1;
303  }
304  else {
305  return -1;
306  }
307 
308 }
T getParameter(std::string const &) const
float strip(const LocalPoint &lp) const
Definition: RPCRoll.cc:71
int LeftRightNeighbour(const RPCRoll &roll, const LocalPoint &hit_pos, int strip)
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:52
const Topology & topology() const
Definition: RPCRoll.cc:30
bool hasY() const
Definition: RPCDigi.h:35
virtual float stripLength() const
CaloTopology const * topology(0)
DetectorHitMap theDetectorHitMap
Definition: RPCSim.h:72
void setY(double y)
Definition: RPCDigi.h:45
void setRPCSimSetUp(RPCSimSetUp *simsetup)
int nstrips() const
Definition: RPCRoll.cc:46
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:50
Definition: config.py:1
const RPCRollSpecs * specs() const
Definition: RPCRoll.cc:18
std::vector< double > clsForDetId
void simulateNoise(const RPCRoll *, CLHEP::HepRandomEngine *) override
void simulate(const RPCRoll *roll, const edm::PSimHitContainer &rpcHits, CLHEP::HepRandomEngine *) override
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
edm::DetSet< RPCDigiSimLink > RPCDigiSimLinks
Definition: RPCSim.h:35
RPCDetId id() const
Definition: RPCRoll.cc:24
double getSmearedTime() const
std::vector< double > sum_clsize
const std::vector< double > & getCls(uint32_t id)
Definition: RPCSimSetUp.cc:408
virtual int channel(const LocalPoint &p) const =0
Definition: RPCSim.h:30
T min(T a, T b)
Definition: MathUtil.h:58
int getClSize(uint32_t id, float posX, CLHEP::HepRandomEngine *)
RPCSimModelTiming(const edm::ParameterSet &config)
std::set< RPCDigi > irpc_digis
Definition: RPCSim.h:61
bool hasTime() const
Definition: RPCDigi.h:33
virtual LocalPoint localPosition(float strip) const
void setDeltaY(double dy)
Definition: RPCDigi.h:47
RPCSynchronizer * _rpcSync
void clear()
Definition: DetSet.h:69
std::vector< PSimHit > PSimHitContainer
virtual LocalPoint localPosition(float strip) const
T x() const
Definition: PV3DBase.h:62
virtual float stripLength() const
det heigth (strip length in the middle)
RPCDigiSimLinks theRpcDigiSimLinks
Definition: RPCSim.h:74
void setTime(double time)
Definition: RPCDigi.h:42
int getSimHitBxAndTimingForIRPC(const PSimHit *, CLHEP::HepRandomEngine *)
const Topology & topology() const
Definition: RPCRollSpecs.cc:43
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:63