CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
RPCSimModelTiming Class Reference

#include <RPCSimModelTiming.h>

Inheritance diagram for RPCSimModelTiming:
RPCSim

Public Member Functions

int getClSize (uint32_t id, float posX, CLHEP::HepRandomEngine *)
 
int LeftRightNeighbour (const RPCRoll &roll, const LocalPoint &hit_pos, int strip)
 
 RPCSimModelTiming (const edm::ParameterSet &config)
 
void simulate (const RPCRoll *roll, const edm::PSimHitContainer &rpcHits, CLHEP::HepRandomEngine *) override
 
void simulateNoise (const RPCRoll *, CLHEP::HepRandomEngine *) override
 
 ~RPCSimModelTiming ()
 
- Public Member Functions inherited from RPCSim
const DigiSimLinksdigiSimLinks () const
 
virtual void fillDigis (int rollDetId, RPCDigiCollection &digis)
 
RPCSimSetUpgetRPCSimSetUp ()
 
const RPCDigiSimLinksrpcDigiSimLinks () const
 
void setRPCSimSetUp (RPCSimSetUp *setup)
 
virtual ~RPCSim ()
 

Protected Member Functions

void init () override
 
- Protected Member Functions inherited from RPCSim
virtual void addLinks (unsigned int strip, int bx)
 
 RPCSim (const edm::ParameterSet &config)
 

Protected Attributes

RPCSynchronizer_rpcSync
 
double aveCls
 
double aveEff
 
std::vector< double > clsForDetId
 
std::map< int, std::vector< double > > clsMap
 
bool do_Y
 
double dtimCs
 
bool eledig
 
double frate
 
double gate
 
std::ifstream * infile
 
double lbGate
 
int N_hits
 
int nbxing
 
double rate
 
double resEle
 
double resRPC
 
bool rpcdigiprint
 
double sigmaY
 
double sspeed
 
std::vector< double > sum_clsize
 
double timOff
 
- Protected Attributes inherited from RPCSim
std::set< RPCDigiirpc_digis
 
std::set< std::pair< int, int > > strips
 
DetectorHitMap theDetectorHitMap
 
DigiSimLinks theDigiSimLinks
 
RPCDigiSimLinks theRpcDigiSimLinks
 
RPCSimSetUptheSimSetUp
 

Additional Inherited Members

- Public Types inherited from RPCSim
typedef edm::DetSet< StripDigiSimLinkDigiSimLinks
 
typedef edm::DetSet< RPCDigiSimLinkRPCDigiSimLinks
 
- Protected Types inherited from RPCSim
typedef std::multimap< std::pair< unsigned int, int >, const PSimHit *, std::less< std::pair< unsigned int, int > > > DetectorHitMap
 

Detailed Description

Definition at line 31 of file RPCSimModelTiming.h.

Constructor & Destructor Documentation

RPCSimModelTiming::RPCSimModelTiming ( const edm::ParameterSet config)

Definition at line 42 of file RPCSimModelTiming.cc.

References _rpcSync, aveCls, aveEff, do_Y, dtimCs, frate, gate, edm::ParameterSet::getParameter(), lbGate, nbxing, rate, resEle, resRPC, rpcdigiprint, sigmaY, sspeed, and timOff.

42  : RPCSim(config)
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 }
T getParameter(std::string const &) const
RPCSim(const edm::ParameterSet &config)
Definition: RPCSim.cc:5
RPCSynchronizer * _rpcSync
RPCSimModelTiming::~RPCSimModelTiming ( )

Definition at line 76 of file RPCSimModelTiming.cc.

References _rpcSync.

77 {
78  delete _rpcSync;
79 }
RPCSynchronizer * _rpcSync

Member Function Documentation

int RPCSimModelTiming::getClSize ( uint32_t  id,
float  posX,
CLHEP::HepRandomEngine *  engine 
)

Definition at line 236 of file RPCSimModelTiming.cc.

References clsForDetId, RecoEcal_EventContent_cff::func, RPCSimSetUp::getCls(), RPCSim::getRPCSimSetUp(), mps_fire::i, min(), and sum_clsize.

Referenced by simulate().

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 }
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:50
std::vector< double > clsForDetId
std::vector< double > sum_clsize
const std::vector< double > & getCls(uint32_t id)
Definition: RPCSimSetUp.cc:408
T min(T a, T b)
Definition: MathUtil.h:58
void RPCSimModelTiming::init ( void  )
inlineoverrideprotectedvirtual

Implements RPCSim.

Definition at line 45 of file RPCSimModelTiming.h.

45 {};
int RPCSimModelTiming::LeftRightNeighbour ( const RPCRoll roll,
const LocalPoint hit_pos,
int  strip 
)

Definition at line 285 of file RPCSimModelTiming.cc.

References RPCRoll::centreOfStrip(), RPCRoll::nstrips(), x, and PV3DBase< T, PVType, FrameType >::x().

Referenced by simulate().

285  {
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 }
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:52
int nstrips() const
Definition: RPCRoll.cc:46
T x() const
Definition: PV3DBase.h:62
void RPCSimModelTiming::simulate ( const RPCRoll roll,
const edm::PSimHitContainer rpcHits,
CLHEP::HepRandomEngine *  engine 
)
overridevirtual

Implements RPCSim.

Definition at line 81 of file RPCSimModelTiming.cc.

References _rpcSync, Topology::channel(), GetRecoTauVFromDQM_MC_cff::cl, edm::DetSet< T >::clear(), do_Y, eledig, getClSize(), RPCSim::getRPCSimSetUp(), RPCSynchronizer::getSimHitBxAndTimingForIRPC(), RPCSynchronizer::getSmearedTime(), RPCDigi::hasTime(), RPCDigi::hasY(), mps_fire::i, RPCRoll::id(), RPCSim::irpc_digis, LeftRightNeighbour(), RPCRoll::nstrips(), objects.autophobj::particleType, RecoTauValidation_cfi::posX, DetId::rawId(), RPCDigi::setDeltaY(), RPCSynchronizer::setRPCSimSetUp(), RPCDigi::setTime(), RPCDigi::setY(), sigmaY, RPCRoll::specs(), RPCRoll::strip(), RPCSim::theDetectorHitMap, RPCSim::theRpcDigiSimLinks, RPCRollSpecs::topology(), and ecaldqm::topology().

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 }
float strip(const LocalPoint &lp) const
Definition: RPCRoll.cc:71
int LeftRightNeighbour(const RPCRoll &roll, const LocalPoint &hit_pos, int strip)
CaloTopology const * topology(0)
DetectorHitMap theDetectorHitMap
Definition: RPCSim.h:72
void setRPCSimSetUp(RPCSimSetUp *simsetup)
int nstrips() const
Definition: RPCRoll.cc:46
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:50
const RPCRollSpecs * specs() const
Definition: RPCRoll.cc:18
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
virtual int channel(const LocalPoint &p) const =0
int getClSize(uint32_t id, float posX, CLHEP::HepRandomEngine *)
std::set< RPCDigi > irpc_digis
Definition: RPCSim.h:61
RPCSynchronizer * _rpcSync
void clear()
Definition: DetSet.h:69
RPCDigiSimLinks theRpcDigiSimLinks
Definition: RPCSim.h:74
int getSimHitBxAndTimingForIRPC(const PSimHit *, CLHEP::HepRandomEngine *)
const Topology & topology() const
Definition: RPCRollSpecs.cc:43
void RPCSimModelTiming::simulateNoise ( const RPCRoll roll,
CLHEP::HepRandomEngine *  engine 
)
overridevirtual

Implements RPCSim.

Definition at line 176 of file RPCSimModelTiming.cc.

References do_Y, objects.autophobj::float, frate, gate, RPCSim::getRPCSimSetUp(), RPCDigi::hasTime(), RPCDigi::hasY(), mps_fire::i, RPCRoll::id(), RPCSim::irpc_digis, RectangularStripTopology::localPosition(), TrapezoidalStripTopology::localPosition(), N_hits, nbxing, RPCRoll::nstrips(), DetId::rawId(), RPCDetId::region(), RPCDigi::setDeltaY(), RPCDigi::setTime(), RPCDigi::setY(), sigmaY, RectangularStripTopology::stripLength(), TrapezoidalStripTopology::stripLength(), RPCRoll::topology(), x, TrackerOfflineValidation_Dqm_cff::xmax, and TrackerOfflineValidation_Dqm_cff::xmin.

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 }
const Topology & topology() const
Definition: RPCRoll.cc:30
virtual float stripLength() const
int nstrips() const
Definition: RPCRoll.cc:46
RPCSimSetUp * getRPCSimSetUp()
Definition: RPCSim.h:50
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
RPCDetId id() const
Definition: RPCRoll.cc:24
std::set< RPCDigi > irpc_digis
Definition: RPCSim.h:61
virtual LocalPoint localPosition(float strip) const
virtual LocalPoint localPosition(float strip) const
virtual float stripLength() const
det heigth (strip length in the middle)
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:63

Member Data Documentation

RPCSynchronizer* RPCSimModelTiming::_rpcSync
protected

Definition at line 71 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), simulate(), and ~RPCSimModelTiming().

double RPCSimModelTiming::aveCls
protected

Definition at line 48 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

double RPCSimModelTiming::aveEff
protected

Definition at line 45 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

std::vector<double> RPCSimModelTiming::clsForDetId
protected

Definition at line 68 of file RPCSimModelTiming.h.

Referenced by getClSize().

std::map< int, std::vector<double> > RPCSimModelTiming::clsMap
protected

Definition at line 66 of file RPCSimModelTiming.h.

bool RPCSimModelTiming::do_Y
protected

Definition at line 63 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), simulate(), and simulateNoise().

double RPCSimModelTiming::dtimCs
protected

Definition at line 51 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

bool RPCSimModelTiming::eledig
protected

Definition at line 56 of file RPCSimModelTiming.h.

Referenced by simulate().

double RPCSimModelTiming::frate
protected

Definition at line 62 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), and simulateNoise().

double RPCSimModelTiming::gate
protected

Definition at line 61 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), and simulateNoise().

std::ifstream* RPCSimModelTiming::infile
protected

Definition at line 69 of file RPCSimModelTiming.h.

double RPCSimModelTiming::lbGate
protected

Definition at line 54 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

int RPCSimModelTiming::N_hits
protected

Definition at line 58 of file RPCSimModelTiming.h.

Referenced by simulateNoise().

int RPCSimModelTiming::nbxing
protected

Definition at line 59 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), and simulateNoise().

double RPCSimModelTiming::rate
protected

Definition at line 60 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

double RPCSimModelTiming::resEle
protected

Definition at line 52 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

double RPCSimModelTiming::resRPC
protected

Definition at line 49 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

bool RPCSimModelTiming::rpcdigiprint
protected

Definition at line 55 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

double RPCSimModelTiming::sigmaY
protected

Definition at line 64 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming(), simulate(), and simulateNoise().

double RPCSimModelTiming::sspeed
protected

Definition at line 53 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().

std::vector<double> RPCSimModelTiming::sum_clsize
protected

Definition at line 67 of file RPCSimModelTiming.h.

Referenced by getClSize().

double RPCSimModelTiming::timOff
protected

Definition at line 50 of file RPCSimModelTiming.h.

Referenced by RPCSimModelTiming().