CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
RPCSimSetUp Class Reference

#include <RPCSimSetUp.h>

Public Member Functions

const std::vector< double > & getAsymmetricClsDistribution (uint32_t id, uint32_t slice)
 
const std::vector< double > & getAsymmetryForCls (uint32_t id, uint32_t slice, uint32_t cls)
 
const std::vector< double > & getCls (uint32_t id)
 
const std::map< int, std::vector< double > > & getClsMap ()
 
const std::vector< float > & getEff (uint32_t id)
 
const RPCGeometrygetGeometry ()
 
const std::vector< float > & getNoise (uint32_t id)
 
float getTime (uint32_t id)
 
 RPCSimSetUp (const edm::ParameterSet &ps)
 
void setGeometry (const RPCGeometry *geom)
 sets geometry More...
 
void setRPCSetUp (const std::vector< RPCStripNoises::NoiseItem > &vnoise, const std::vector< float > &vcls)
 
void setRPCSetUp (const std::vector< RPCStripNoises::NoiseItem > &vnoise, const std::vector< RPCClusterSize::ClusterSizeItem > &vClusterSize)
 
virtual ~RPCSimSetUp ()
 

Public Attributes

std::map< RPCDetId, float > _bxmap
 
std::map< int, std::vector< double > > _clsMap
 
std::vector< double > _DetAsymmetryForCls
 
std::vector< double > _DetClsAsymmetric
 
std::map< uint32_t, std::vector< double > > _mapDetClsMap
 
std::map< uint32_t, std::vector< double > > _mapDetClsMapLegacy
 
std::map< uint32_t, std::vector< float > > _mapDetIdEff
 
std::map< uint32_t, std::vector< float > > _mapDetIdNoise
 
const RPCGeometrytheGeometry
 

Detailed Description

Definition at line 27 of file RPCSimSetUp.h.

Constructor & Destructor Documentation

◆ RPCSimSetUp()

RPCSimSetUp::RPCSimSetUp ( const edm::ParameterSet ps)
explicit

Definition at line 34 of file RPCSimSetUp.cc.

34  {
35  _mapDetIdNoise.clear();
36  _mapDetIdEff.clear();
37  _bxmap.clear();
38  _clsMap.clear();
39 }
std::map< RPCDetId, float > _bxmap
Definition: RPCSimSetUp.h:54
std::map< uint32_t, std::vector< float > > _mapDetIdEff
Definition: RPCSimSetUp.h:53
std::map< int, std::vector< double > > _clsMap
Definition: RPCSimSetUp.h:55
std::map< uint32_t, std::vector< float > > _mapDetIdNoise
Definition: RPCSimSetUp.h:52

◆ ~RPCSimSetUp()

RPCSimSetUp::~RPCSimSetUp ( )
virtual

Definition at line 616 of file RPCSimSetUp.cc.

616 {}

Member Function Documentation

◆ getAsymmetricClsDistribution()

const std::vector< double > & RPCSimSetUp::getAsymmetricClsDistribution ( uint32_t  id,
uint32_t  slice 
)

Definition at line 476 of file RPCSimSetUp.cc.

References Exception, mps_fire::i, dqmiolumiharvest::j, LogDebug, and mergeAndRegister::slice.

Referenced by RPCSimAsymmetricCls::getClSize().

476  {
477  LogDebug("RPCSimSetupChecks") << "RPCSimSetUp::getAsymmetricClsDistribution" << std::endl;
478 
479  map<uint32_t, std::vector<double> >::const_iterator iter = _mapDetClsMap.find(id);
480  if (iter == _mapDetClsMap.end()) {
481  throw cms::Exception("DataCorrupt")
482  << "Exception from RPCSimSetUp - _mapDetClsMap - no cluster size information for DetId\t" << id << std::endl;
483  }
484  if ((iter->second).size() != 120) {
485  throw cms::Exception("DataCorrupt")
486  << "Exception from RPCSimSetUp - _mapDetClsMap - cluster size information in a wrong format for DetId\t" << id
487  << std::endl;
488  }
489  // return iter->second;
490 
491  std::vector<double> dataForAsymmCls = iter->second;
492  if (slice > 4) {
493  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - slice variable not in the range" << std::endl;
494  }
495 
496  _DetClsAsymmetric.clear();
497 
498  vector<double> clsFewStripsDistribution;
499  vector<double> clsDistribution;
500  vector<double> clsAccumulativeDistribution;
501 
502  std::map<int, std::vector<double> > mapSliceVsDistribution;
503 
504  const int slices = 5;
505  const int distributionFewStrips = 24;
506 
507  double sliceVsFewStripsDistribution[slices][distributionFewStrips];
508 
509  for (int j = 0; j < distributionFewStrips; j++) {
510  for (int i = 0; i < slices; i++) {
511  sliceVsFewStripsDistribution[i][j] = dataForAsymmCls[j * slices + i];
512  }
513  }
514 
515  double control = 0;
516  for (int j = 0; j < distributionFewStrips; j++) {
517  control += sliceVsFewStripsDistribution[0][j];
518  }
519 
520  double control1 = 0;
521  for (int j = 0; j < distributionFewStrips; j++) {
522  for (int i = 0; i < slices; i++) {
523  control1 += dataForAsymmCls[j * slices + i];
524  }
525  }
526 
527  int i = slice;
528  double sum = 0;
529  int counter = 0;
530  for (int j = 0; j < distributionFewStrips; j++) {
531  counter++;
532  sum += sliceVsFewStripsDistribution[i][j];
533  if (counter % 4 == 0) {
534  _DetClsAsymmetric.push_back(sum);
535  }
536  }
537  return _DetClsAsymmetric;
538 }
std::vector< double > _DetClsAsymmetric
Definition: RPCSimSetUp.h:58
std::map< uint32_t, std::vector< double > > _mapDetClsMap
Definition: RPCSimSetUp.h:56
#define LogDebug(id)

◆ getAsymmetryForCls()

const std::vector< double > & RPCSimSetUp::getAsymmetryForCls ( uint32_t  id,
uint32_t  slice,
uint32_t  cls 
)

Definition at line 540 of file RPCSimSetUp.cc.

References Exception, mps_fire::i, dqmiolumiharvest::j, LogDebug, findQualityFiles::size, mergeAndRegister::slice, and relativeConstraints::value.

Referenced by RPCSimAsymmetricCls::simulate().

540  {
541  LogDebug("RPCSimSetupChecks") << "RPCSimSetUp::getAsymmetryForCls" << std::endl;
542 
543  map<uint32_t, std::vector<double> >::const_iterator iter = _mapDetClsMap.find(id);
544  if (iter == _mapDetClsMap.end()) {
545  throw cms::Exception("DataCorrupt")
546  << "Exception from RPCSimSetUp - _mapDetClsMap - no cluster size information for DetId\t" << id << std::endl;
547  }
548  if ((iter->second).size() != 120) {
549  throw cms::Exception("DataCorrupt")
550  << "Exception from RPCSimSetUp - _mapDetClsMap - cluster size information in a wrong format for DetId\t" << id
551  << '\t' << (iter->second).size() << std::endl;
552  }
553 
554  std::vector<double> dataForAsymmCls = iter->second;
555 
556  if (slice > 4) {
557  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - slice variable not in the range" << std::endl;
558  }
559 
560  _DetAsymmetryForCls.clear();
561 
562  vector<double> clsFewStripsDistribution;
563  vector<double> clsDistribution;
564  vector<double> clsAccumulativeDistribution;
565  vector<double> clsDetAsymmetryForCls;
566  clsDetAsymmetryForCls.clear();
567 
568  std::map<int, std::vector<double> > mapSliceVsDistribution;
569 
570  const int slices = 5;
571  const int distributionFewStrips = 24;
572 
573  double sliceVsFewStripsDistribution[slices][distributionFewStrips];
574 
575  for (int j = 0; j < distributionFewStrips; j++) {
576  for (int i = 0; i < slices; i++) {
577  sliceVsFewStripsDistribution[i][j] = dataForAsymmCls[j * slices + i];
578  }
579  }
580 
581  int vector_lenght;
582  switch (cls) {
583  case 1:
584  case 3:
585  case 5:
586  vector_lenght = 3;
587  break;
588  case 2:
589  case 4:
590  vector_lenght = 4;
591  break;
592  case 6:
593  default:
594  vector_lenght = 1;
595  break;
596  }
597 
598  float sum = 0;
599  float value;
600  for (int i = 0; i < vector_lenght; i++) {
601  value = sliceVsFewStripsDistribution[slice][(cls - 1) * 4 + i];
602  clsDetAsymmetryForCls.push_back(value);
603  sum += value;
604  // LogDebug ("RPCSimSetup")<<"value\t"<<value<<std::endl;
605  // LogDebug ("RPCSimSetup")<<"sum\t"<<sum<<std::endl;
606  }
607 
608  float accum = 0;
609  for (int i = clsDetAsymmetryForCls.size() - 1; i > -1; i--) {
610  accum += clsDetAsymmetryForCls[i];
611  _DetAsymmetryForCls.push_back(accum / sum);
612  }
613  return _DetAsymmetryForCls;
614 }
size
Write out results.
std::vector< double > _DetAsymmetryForCls
Definition: RPCSimSetUp.h:59
Definition: value.py:1
std::map< uint32_t, std::vector< double > > _mapDetClsMap
Definition: RPCSimSetUp.h:56
#define LogDebug(id)

◆ getCls()

const std::vector< double > & RPCSimSetUp::getCls ( uint32_t  id)

Definition at line 457 of file RPCSimSetUp.cc.

References Exception, and LogDebug.

Referenced by RPCSimModelTiming::getClSize(), and RPCSimAverageNoiseEffCls::getClSize().

458 {
459  LogDebug("RPCSimSetupChecks") << "RPCSimSetUp::getCls" << std::endl;
460 
461  map<uint32_t, std::vector<double> >::iterator iter = _mapDetClsMapLegacy.find(id);
462  if (iter == _mapDetClsMapLegacy.end()) {
463  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - no cluster size information for DetId\t" << id
464  << std::endl;
465  }
466  if ((iter->second).size() != 100) {
467  throw cms::Exception("DataCorrupt")
468  << "Exception from RPCSimSetUp - _mapDetClsMapLegacy - cluster size information in a wrong format for DetId\t"
469  << id << std::endl;
470  }
471  LogDebug("RPCSimSetupChecks")
472  << "All OK from RPCSimSetUp - _mapDetClsMapLegacy - cluster size information for DetId\t" << id << std::endl;
473  return iter->second;
474 }
std::map< uint32_t, std::vector< double > > _mapDetClsMapLegacy
Definition: RPCSimSetUp.h:57
#define LogDebug(id)

◆ getClsMap()

const std::map< int, std::vector< double > > & RPCSimSetUp::getClsMap ( )

Definition at line 449 of file RPCSimSetUp.cc.

References Exception.

Referenced by RPCSimAverage::getClSize(), RPCSimAverageNoise::getClSize(), RPCSimAverageNoiseEff::getClSize(), RPCSimAverageNoiseEffCls::getClSize(), and RPCSimAsymmetricCls::getClSize().

449  {
450  if (_clsMap.size() != 5) {
451  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - cluster size - a wrong format " << std::endl;
452  }
453  return _clsMap;
454 }
std::map< int, std::vector< double > > _clsMap
Definition: RPCSimSetUp.h:55

◆ getEff()

const std::vector< float > & RPCSimSetUp::getEff ( uint32_t  id)

Definition at line 416 of file RPCSimSetUp.cc.

References Exception, LogDebug, RPCRoll::nstrips(), and findQualityFiles::size.

416  {
417  map<uint32_t, std::vector<float> >::iterator iter = _mapDetIdEff.find(id);
418  if (iter == _mapDetIdEff.end()) {
419  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - no efficiency information for DetId\t" << id
420  << std::endl;
421  }
422 
423  RPCDetId rpcId = RPCDetId(id);
424  const RPCRoll* roll = theGeometry->roll(rpcId);
425  unsigned int numbStrips = roll->nstrips();
426 
427  if ((iter->second).size() < numbStrips) {
428  LogDebug("RPCSimSetup") << "Exception from RPCSimSetUp - efficiency information in a wrong format for DetId\t" << id
429  << " aka " << RPCDetId(id) << std::endl;
430  LogDebug("RPCSimSetup") << " number of strips in Conditions\t" << (iter->second).size()
431  << " number of strips in Geometry\t" << numbStrips << std::endl;
432  throw cms::Exception("DataCorrupt")
433  << "Exception from RPCSimSetUp - efficiency information in a wrong format for DetId\t" << id << std::endl;
434  }
435 
436  return iter->second;
437 }
size
Write out results.
const RPCRoll * roll(RPCDetId id) const
Return a roll given its id.
Definition: RPCGeometry.cc:50
int nstrips() const
Definition: RPCRoll.cc:24
const RPCGeometry * theGeometry
Definition: RPCSimSetUp.h:50
std::map< uint32_t, std::vector< float > > _mapDetIdEff
Definition: RPCSimSetUp.h:53
#define LogDebug(id)

◆ getGeometry()

const RPCGeometry* RPCSimSetUp::getGeometry ( )
inline

Definition at line 48 of file RPCSimSetUp.h.

References theGeometry.

Referenced by RPCSynchronizer::getSimHitBx(), and RPCSynchronizer::getSimHitBxAndTimingForIRPC().

48 { return theGeometry; }
const RPCGeometry * theGeometry
Definition: RPCSimSetUp.h:50

◆ getNoise()

const std::vector< float > & RPCSimSetUp::getNoise ( uint32_t  id)

Definition at line 406 of file RPCSimSetUp.cc.

References Exception, and LogDebug.

406  {
407  map<uint32_t, std::vector<float> >::iterator iter = _mapDetIdNoise.find(id);
408  if (iter == _mapDetIdNoise.end()) {
409  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - no noise information for DetId\t" << id
410  << std::endl;
411  }
412  LogDebug("RPCSimSetupChecks") << "All OK from RPCSimSetUp - noise information for DetId\t" << id << std::endl;
413  return iter->second;
414 }
#define LogDebug(id)
std::map< uint32_t, std::vector< float > > _mapDetIdNoise
Definition: RPCSimSetUp.h:52

◆ getTime()

float RPCSimSetUp::getTime ( uint32_t  id)

Definition at line 439 of file RPCSimSetUp.cc.

References Exception, and DetId::rawId().

Referenced by RPCSynchronizer::getSimHitBx(), and RPCSynchronizer::getSimHitBxAndTimingForIRPC().

439  {
440  RPCDetId rpcid(id);
441  std::map<RPCDetId, float>::iterator iter = _bxmap.find(rpcid);
442  if (iter == _bxmap.end()) {
443  throw cms::Exception("DataCorrupt") << "Exception from RPCSimSetUp - no timing information for rpcid.rawId()\t"
444  << rpcid.rawId() << std::endl;
445  }
446  return iter->second;
447 }
std::map< RPCDetId, float > _bxmap
Definition: RPCSimSetUp.h:54

◆ setGeometry()

void RPCSimSetUp::setGeometry ( const RPCGeometry geom)
inline

sets geometry

Definition at line 46 of file RPCSimSetUp.h.

References relativeConstraints::geom, and theGeometry.

Referenced by RPCDigiProducer::beginRun(), and RPCandIRPCDigiProducer::beginRun().

46 { theGeometry = geom; }
const RPCGeometry * theGeometry
Definition: RPCSimSetUp.h:50

◆ setRPCSetUp() [1/2]

void RPCSimSetUp::setRPCSetUp ( const std::vector< RPCStripNoises::NoiseItem > &  vnoise,
const std::vector< float > &  vcls 
)

Definition at line 41 of file RPCSimSetUp.cc.

References dqmiodumpmetadata::n, and groupFilesInBlocks::temp.

Referenced by RPCDigiProducer::beginRun(), and RPCandIRPCDigiProducer::beginRun().

41  {
42  unsigned int counter = 1;
43  unsigned int row = 1;
44  std::vector<double> sum_clsize;
45 
46  for (unsigned int n = 0; n < vcls.size(); ++n) {
47  sum_clsize.push_back(vcls[n]);
48 
49  if (counter == row * 20) {
50  _clsMap[row] = sum_clsize;
51  row++;
52  sum_clsize.clear();
53  }
54  counter++;
55  }
56 
57  unsigned int n = 0;
58  uint32_t temp = 0;
59  std::vector<float> veff, vvnoise;
60  veff.clear();
61  vvnoise.clear();
62 
63  for (std::vector<RPCStripNoises::NoiseItem>::const_iterator it = vnoise.begin(); it != vnoise.end(); ++it) {
64  if (n % 96 == 0) {
65  if (n > 0) {
66  _mapDetIdNoise[temp] = vvnoise;
67  _mapDetIdEff[temp] = veff;
68  _bxmap[RPCDetId(it->dpid)] = it->time;
69 
70  veff.clear();
71  vvnoise.clear();
72  vvnoise.push_back((it->noise));
73  veff.push_back((it->eff));
74  } else if (n == 0) {
75  vvnoise.push_back((it->noise));
76  veff.push_back((it->eff));
77  _bxmap[RPCDetId(it->dpid)] = it->time;
78  }
79  } else if (n == vnoise.size() - 1) {
80  temp = it->dpid;
81  vvnoise.push_back((it->noise));
82  veff.push_back((it->eff));
83  _mapDetIdNoise[temp] = vvnoise;
84  _mapDetIdEff[temp] = veff;
85  } else {
86  temp = it->dpid;
87  vvnoise.push_back((it->noise));
88  veff.push_back((it->eff));
89  }
90  n++;
91  }
92 }
std::map< RPCDetId, float > _bxmap
Definition: RPCSimSetUp.h:54
std::map< uint32_t, std::vector< float > > _mapDetIdEff
Definition: RPCSimSetUp.h:53
std::map< int, std::vector< double > > _clsMap
Definition: RPCSimSetUp.h:55
std::map< uint32_t, std::vector< float > > _mapDetIdNoise
Definition: RPCSimSetUp.h:52

◆ setRPCSetUp() [2/2]

void RPCSimSetUp::setRPCSetUp ( const std::vector< RPCStripNoises::NoiseItem > &  vnoise,
const std::vector< RPCClusterSize::ClusterSizeItem > &  vClusterSize 
)

Definition at line 94 of file RPCSimSetUp.cc.

References LogDebug, RPCRoll::nstrips(), and AlCaHLTBitMon_QueryRunRegistry::string.

95  {
96  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp(vector<NoiseItem>, vector<ClusterSizeItem>)" << std::endl;
97 
98  uint32_t detId = 0, current_detId, this_detId;
99  RPCDetId rpcId, current_rpcId, this_rpcId;
100  const RPCRoll* current_roll = nullptr;
101  const RPCRoll* this_roll = nullptr;
102  unsigned int current_nStrips;
103 
104  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp :: ClusterSizeItem :: begin" << std::endl;
105 #ifdef EDM_ML_DEBUG
106  std::stringstream sslogclsitem;
107 #endif
108  // ### ClusterSizeItem #######################################################
109  std::vector<RPCClusterSize::ClusterSizeItem>::const_iterator itCls;
110  int clsCounter(1);
111  std::vector<double> clsVect;
112  // ### loop for New Format (120 entries)
113  for (itCls = vClusterSize.begin(); itCls != vClusterSize.end(); ++itCls) {
114  clsVect.push_back(((double)(itCls->clusterSize)));
115 #ifdef EDM_ML_DEBUG
116  sslogclsitem << " Push back clustersize = " << itCls->clusterSize << std::endl;
117  sslogclsitem << "Filling cls in _mapDetCls[detId,clsVect] :: detId = " << detId;
118  sslogclsitem << " --> will it be accepted? clsCounter = " << clsCounter << " accepted?";
119  sslogclsitem << " New Format ::" << ((!(clsCounter % 120)) && (clsCounter != 0)); // <<std::endl;
120  sslogclsitem << " Old Format ::" << ((!(clsCounter % 100)) && (clsCounter != 0)); // <<std::endl;
121  sslogclsitem << std::endl;
122 #endif
123  // New Format :: loop until 120
124  if ((!(clsCounter % 120)) && (clsCounter != 0)) {
125  detId = itCls->dpid;
126  _mapDetClsMap[detId] = clsVect;
127 #ifdef EDM_ML_DEBUG
128  std::stringstream LogDebugClsVectString;
129  LogDebugClsVectString << "[";
130  for (std::vector<double>::iterator itClsVect = clsVect.begin(); itClsVect != clsVect.end(); ++itClsVect) {
131  LogDebugClsVectString << *itClsVect << ",";
132  }
133  LogDebugClsVectString << "]";
134  std::string LogDebugClsVectStr = LogDebugClsVectString.str();
135  LogDebug("RPCSimSetup") << "Filling clsVect in _mapDetCls[detId,clsVect] :: detId = " << RPCDetId(detId) << " = "
136  << detId << " clsVec = " << LogDebugClsVectStr;
137 
138  sslogclsitem << " --> New Method ";
139  sslogclsitem << " --> saved in map " << std::endl;
140  sslogclsitem << "Filling cls in _mapDetClsMap[detId,clsVect] :: detId = " << detId;
141  sslogclsitem << " --> will it be accepted? clsCounter = " << clsCounter << " accepted? "
142  << ((!(clsCounter % 120)) && (clsCounter != 0)) << std::endl;
143 #endif
144  clsVect.clear();
145  clsCounter = 0;
146  } else {
147 #ifdef EDM_ML_DEBUG
148  sslogclsitem << " --> not saved in map " << std::endl;
149 #endif
150  }
151  ++clsCounter;
152  }
153  // ### loop for Old Format (100 entries)
154  for (itCls = vClusterSize.begin(); itCls != vClusterSize.end(); ++itCls) {
155  clsVect.push_back(((double)(itCls->clusterSize)));
156 #ifdef EDM_ML_DEBUG
157  sslogclsitem << " Push back clustersize = " << itCls->clusterSize << std::endl;
158  sslogclsitem << "Filling cls in _mapDetClsMapLegacy[detId,clsVect] :: detId = " << detId;
159  sslogclsitem << " --> will it be accepted? clsCounter = " << clsCounter << " accepted?";
160  sslogclsitem << " New Format ::" << ((!(clsCounter % 120)) && (clsCounter != 0)); // <<std::endl;
161  sslogclsitem << " Old Format ::" << ((!(clsCounter % 100)) && (clsCounter != 0)); // <<std::endl;
162  sslogclsitem << std::endl;
163 #endif
164  // Old Format :: same until 100
165  if ((!(clsCounter % 100)) && (clsCounter != 0)) {
166  detId = itCls->dpid;
167  _mapDetClsMapLegacy[detId] = clsVect;
168 #ifdef EDM_ML_DEBUG
169  std::stringstream LogDebugClsVectString;
170  LogDebugClsVectString << "[";
171  for (std::vector<double>::iterator itClsVect = clsVect.begin(); itClsVect != clsVect.end(); ++itClsVect) {
172  LogDebugClsVectString << *itClsVect << ",";
173  }
174  LogDebugClsVectString << "]";
175  std::string LogDebugClsVectStr = LogDebugClsVectString.str();
176  LogDebug("RPCSimSetup") << "Filling clsVect in _mapDetClsLegacy[detId,clsVect] :: detId = " << RPCDetId(detId)
177  << " = " << detId << " clsVec = " << LogDebugClsVectStr;
178 
179  sslogclsitem << " --> Old Method ";
180  sslogclsitem << " --> saved in map " << std::endl;
181  sslogclsitem << "Filling cls in _mapDetClsMapLegacy[detId,clsVect] :: detId = " << detId;
182  sslogclsitem << " --> will it be accepted? clsCounter = " << clsCounter << " accepted? "
183  << ((!(clsCounter % 120)) && (clsCounter != 0)) << std::endl;
184 #endif
185  clsVect.clear();
186  clsCounter = 0;
187  } else {
188 #ifdef EDM_ML_DEBUG
189  sslogclsitem << " --> not saved in map " << std::endl;
190 #endif
191  }
192  ++clsCounter;
193  }
194  // ###########################################################################
195 #ifdef EDM_ML_DEBUG
196  std::string logclsitem = sslogclsitem.str();
197  sslogclsitem.clear();
198  LogDebug("RPCSimSetupClsLoopDetails") << logclsitem << std::endl;
199  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp :: ClusterSizeItem :: end" << std::endl;
200 
201  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp :: NoiseItem :: begin" << std::endl;
202  std::stringstream sslognoiseitem;
203 #endif
204  // ### NoiseItem #############################################################
205  unsigned int count_strips = 1;
206  unsigned int count_all = 1;
207  std::vector<float> vveff, vvnoise;
208 
209  // DetId to start with needs to be a DetId inside the Geometry used
210  // Therefore loop on the NoiseItems and search for the first valid roll in the Geometry
211  // Assign this as the DetId to start with (so called current_roll) and quit the loop
212  bool quitLoop = false;
213  current_detId = 0;
214  current_nStrips = 0; // current_rpcId = 0; current_roll = 0;
215  for (std::vector<RPCStripNoises::NoiseItem>::const_iterator it = vnoise.begin(); it != vnoise.end() && !quitLoop;
216  ++it) {
217  // roll associated to the conditions of this strip (iterator)
218  current_detId = it->dpid;
219  current_rpcId = RPCDetId(current_detId);
220  // Test whether this roll (picked up from the conditions) is inside the RPC Geometry
221  const RPCRoll* roll = theGeometry->roll(current_rpcId);
222  if (roll == nullptr) {
223 #ifdef EDM_ML_DEBUG
224  sslognoiseitem << "Searching for first valid detid :: current_detId = " << current_detId;
225  sslognoiseitem << " aka " << current_rpcId << " is not in current Geometry --> Skip " << std::endl;
226 #endif
227  continue;
228  } else {
229 #ifdef EDM_ML_DEBUG
230  sslognoiseitem << "Searching for first valid detid :: current_detId = " << current_detId;
231  sslognoiseitem << " aka " << current_rpcId
232  << " is the first (valid) roll in the current Geometry --> Accept, Assign & Quit Loop"
233  << std::endl;
234 #endif
235  current_roll = theGeometry->roll(current_rpcId);
236  current_nStrips = current_roll->nstrips();
237  quitLoop = true;
238  }
239  }
240 
241 #ifdef EDM_ML_DEBUG
242  sslognoiseitem << "Start Position :: current_detId = " << current_detId << " aka " << current_rpcId;
243  sslognoiseitem << " is a valid roll with pointer " << current_roll << " and has "
244  << (current_roll ? current_roll->nstrips() : 0) << " strips" << std::endl;
245  sslognoiseitem << " -------------------------------------------------------------------------------------------------"
246  "------------------------------------ "
247  << std::endl;
248 #endif
249  for (std::vector<RPCStripNoises::NoiseItem>::const_iterator it = vnoise.begin(); it != vnoise.end(); ++it) {
250  // roll associated to the conditions of this strip (iterator)
251  this_detId = it->dpid;
252  this_rpcId = RPCDetId(this_detId);
253  // Test whether this roll (picked up from the conditions) is inside the RPC Geometry
254  const RPCRoll* roll = theGeometry->roll(this_rpcId);
255  if (roll == nullptr) {
256 #ifdef EDM_ML_DEBUG
257  sslognoiseitem << "Inside Loop :: [" << std::setw(6) << count_all << "][" << std::setw(3) << count_strips
258  << "] :: this_detId = " << this_detId << " aka " << this_rpcId
259  << " which is not in current Geometry --> Skip " << std::endl;
260 #endif
261  continue;
262  }
263 
264  // Case 1 :: FIRST ENTRY
265  // ---------------------
266  if (this_detId == current_detId && count_strips == 1) {
267  // fill bx in map
268  _bxmap[current_detId] = it->time;
269  // clear vectors
270  vveff.clear();
271  vvnoise.clear();
272  // fill the vectors
273  vvnoise.push_back((it->noise));
274  vveff.push_back((it->eff));
275 #ifdef EDM_ML_DEBUG
276  sslognoiseitem << "RPCSimSetUp::setRPCSetUp :: NoiseItem :: case 1" << std::endl;
277  sslognoiseitem << this_detId << " = " << this_rpcId << " with " << roll->nstrips() << " strips" << std::endl;
278  sslognoiseitem << "[NoiseItem :: n = " << count_all
279  << "] Filling time in _bxmap[detId] :: detId = " << RPCDetId(it->dpid) << " time = " << it->time
280  << std::endl;
281  sslognoiseitem << "First Value :: [" << std::setw(6) << count_all << "][" << std::setw(3) << count_strips
282  << "] :: this_detId = " << this_detId << " aka " << this_rpcId;
283  sslognoiseitem << " Strip " << std::setw(3) << count_strips << " Noise = " << it->noise << " Hz/cm2" << std::endl;
284 #endif
285  // update counter
286  ++count_strips;
287  ++count_all;
288  }
289  // Case 2 :: 2ND ENTRY --> LAST-1 ENTRY
290  // ------------------------------------
291  else if (this_detId == current_detId && count_strips > 1 && count_strips < current_nStrips) {
292 #ifdef EDM_ML_DEBUG
293  sslognoiseitem << "RPCSimSetUp::setRPCSetUp :: NoiseItem :: case 2" << std::endl;
294  sslognoiseitem << "Inside Loop :: [" << std::setw(6) << count_all << "][" << std::setw(3) << count_strips
295  << "] :: this_detId = " << this_detId << " aka " << this_rpcId;
296  sslognoiseitem << " Strip " << std::setw(3) << count_strips << " Noise = " << it->noise << " Hz/cm2" << std::endl;
297 #endif
298  // fill the vectors
299  vvnoise.push_back((it->noise));
300  vveff.push_back((it->eff));
301  // update counter
302  ++count_strips;
303  ++count_all;
304  }
305 
306  // Case 3 :: LAST ENTRY
307  // --------------------
308  else if (this_detId == current_detId && count_strips == current_nStrips) {
309 #ifdef EDM_ML_DEBUG
310  sslognoiseitem << "RPCSimSetUp::setRPCSetUp :: NoiseItem :: case 3" << std::endl;
311  sslognoiseitem << "Last Value :: [" << std::setw(6) << count_all << "][" << std::setw(3) << count_strips
312  << "] :: this_detId = " << this_detId << " aka " << this_rpcId;
313  sslognoiseitem << " Strip " << std::setw(3) << count_strips << " Noise = " << it->noise << " Hz/cm2" << std::endl;
314 #endif
315  // fill last value in the vector
316  vvnoise.push_back((it->noise));
317  vveff.push_back((it->eff));
318  // update counter
319  ++count_strips;
320  ++count_all;
321  // fill vectors into map
322  _mapDetIdNoise[current_detId] = vvnoise;
323  _mapDetIdEff[current_detId] = vveff;
324 
325 #ifdef EDM_ML_DEBUG
326  sslognoiseitem << " fill vectors into map" << std::endl;
327  std::stringstream LogDebugNoiVectString, LogDebugEffVectString;
328  LogDebugNoiVectString << "[";
329  for (std::vector<float>::iterator itNoiVect = vvnoise.begin(); itNoiVect != vvnoise.end(); ++itNoiVect) {
330  LogDebugNoiVectString << (*itNoiVect) << ",";
331  }
332  LogDebugNoiVectString << "]";
333  std::string LogDebugNoiVectStr = LogDebugNoiVectString.str();
334  LogDebugEffVectString << "[";
335  for (std::vector<float>::iterator itEffVect = vveff.begin(); itEffVect != vveff.end(); ++itEffVect) {
336  LogDebugEffVectString << (*itEffVect) << ",";
337  }
338  LogDebugEffVectString << "]";
339  std::string LogDebugEffVectStr = LogDebugEffVectString.str();
340  LogDebug("RPCSimSetup") << "Filling vvnoise in _mapDetIdNoise[detId] :: detId = " << RPCDetId(it->dpid) << " = "
341  << (RPCDetId(it->dpid)).rawId() << " vvnoise = " << LogDebugNoiVectStr;
342  LogDebug("RPCSimSetup") << "Filling veff in _mapDetIdEff[detId] :: detId = " << RPCDetId(it->dpid) << " = "
343  << (RPCDetId(it->dpid)).rawId() << " veff = " << LogDebugEffVectStr;
344 #endif
345  // look for next different detId and rename it to the current_detId
346  // at this point we skip all the conditions for the strips that are not in this roll
347  // and we will go to the conditions for the first strip of the next roll
348  bool next_detId_found = false;
349 #ifdef EDM_ML_DEBUG
350  sslognoiseitem << "look for next different detId" << std::endl;
351 #endif
352  while (next_detId_found == 0 && it != vnoise.end() - 1) {
353  ++it;
354  this_detId = it->dpid;
355  this_rpcId = RPCDetId(this_detId);
356  this_roll = theGeometry->roll(this_rpcId);
357  if (!this_roll)
358  continue;
359 #ifdef EDM_ML_DEBUG
360  sslognoiseitem << "Inside While:: [" << std::setw(6) << count_all << "][" << std::setw(3) << count_strips
361  << "] :: this_detId = " << this_detId << " aka " << this_rpcId << " Noise = " << it->noise
362  << " Hz/cm2" << std::endl;
363 #endif
364  ++count_strips;
365  // ++count_all;
366  if (this_detId != current_detId) {
367 #ifdef EDM_ML_DEBUG
368  sslognoiseitem << "Different detId is found :: " << this_detId << " aka " << this_rpcId
369  << " Noise = " << it->noise << " Hz/cm2";
370 #endif
371  // next roll is found. update current_detId to this newly found detId
372  // and update also the number of strips
373  current_detId = this_detId;
374  current_rpcId = RPCDetId(current_detId);
375  next_detId_found = true;
376  current_nStrips = (theGeometry->roll(current_rpcId))->nstrips();
377 #ifdef EDM_ML_DEBUG
378  sslognoiseitem << " with " << current_nStrips << " strips" << std::endl;
379 #endif
380  --it; // subtract one, because at the end of the loop the iterator will be increased with one
381  // in fact the treatment for roll N stops when we find the first occurence of roll N+1
382  // however we want to start the treatment for roll N+1 with the first occurence of roll N+1
383  // so the first entry of each new roll N+1 is manipulated twice in the loop (once as a stop, once as a start)
384  // therefore we have to manipulate the iterator here, subtracting one, to treat again this entry
385  }
386  }
387  // reset count_strips
388  count_strips = 1;
389  }
390  // There should be no Case 4
391  // -------------------------
392  else {
393  }
394  }
395  // ###########################################################################
396 #ifdef EDM_ML_DEBUG
397  std::string lognoiseitem = sslognoiseitem.str();
398  sslognoiseitem.clear();
399  LogDebug("RPCSimSetupNoiseLoopDetails") << lognoiseitem << std::endl;
400  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp :: NoiseItem :: end" << std::endl;
401 
402  LogDebug("RPCSimSetup") << "RPCSimSetUp::setRPCSetUp :: end" << std::endl;
403 #endif
404 }
std::map< RPCDetId, float > _bxmap
Definition: RPCSimSetUp.h:54
std::map< uint32_t, std::vector< double > > _mapDetClsMapLegacy
Definition: RPCSimSetUp.h:57
const RPCRoll * roll(RPCDetId id) const
Return a roll given its id.
Definition: RPCGeometry.cc:50
int nstrips() const
Definition: RPCRoll.cc:24
const RPCGeometry * theGeometry
Definition: RPCSimSetUp.h:50
std::map< uint32_t, std::vector< float > > _mapDetIdEff
Definition: RPCSimSetUp.h:53
std::map< uint32_t, std::vector< double > > _mapDetClsMap
Definition: RPCSimSetUp.h:56
#define LogDebug(id)
std::map< uint32_t, std::vector< float > > _mapDetIdNoise
Definition: RPCSimSetUp.h:52

Member Data Documentation

◆ _bxmap

std::map<RPCDetId, float> RPCSimSetUp::_bxmap

Definition at line 54 of file RPCSimSetUp.h.

◆ _clsMap

std::map<int, std::vector<double> > RPCSimSetUp::_clsMap

Definition at line 55 of file RPCSimSetUp.h.

◆ _DetAsymmetryForCls

std::vector<double> RPCSimSetUp::_DetAsymmetryForCls

Definition at line 59 of file RPCSimSetUp.h.

◆ _DetClsAsymmetric

std::vector<double> RPCSimSetUp::_DetClsAsymmetric

Definition at line 58 of file RPCSimSetUp.h.

◆ _mapDetClsMap

std::map<uint32_t, std::vector<double> > RPCSimSetUp::_mapDetClsMap

Definition at line 56 of file RPCSimSetUp.h.

◆ _mapDetClsMapLegacy

std::map<uint32_t, std::vector<double> > RPCSimSetUp::_mapDetClsMapLegacy

Definition at line 57 of file RPCSimSetUp.h.

◆ _mapDetIdEff

std::map<uint32_t, std::vector<float> > RPCSimSetUp::_mapDetIdEff

Definition at line 53 of file RPCSimSetUp.h.

◆ _mapDetIdNoise

std::map<uint32_t, std::vector<float> > RPCSimSetUp::_mapDetIdNoise

Definition at line 52 of file RPCSimSetUp.h.

◆ theGeometry

const RPCGeometry* RPCSimSetUp::theGeometry

Definition at line 50 of file RPCSimSetUp.h.

Referenced by getGeometry(), and setGeometry().