CMS 3D CMS Logo

CSCFakePedestalsConditions.cc
Go to the documentation of this file.
1 
3 
5  const CSCDetId &detId = CSCDetId();
6  CSCPedestals *cnpedestals = new CSCPedestals();
7 
8  int max_istrip, id_layer, max_ring, max_cham;
9  seed = 10000;
10  srand(seed);
11  meanped = 600.0, meanrms = 1.5, M = 1000;
12 
13  // endcap=1 to 2,station=1 to 4, ring=1 to 4,chamber=1 to 36,layer=1 to 6
14 
15  for (int iendcap = detId.minEndcapId(); iendcap <= detId.maxEndcapId(); iendcap++) {
16  for (int istation = detId.minStationId(); istation <= detId.maxStationId(); istation++) {
17  max_ring = detId.maxRingId();
18  // station 4 ring 4 not there(36 chambers*2 missing)
19  // 3 rings max this way of counting (ME1a & b)
20  if (istation == 1)
21  max_ring = 3;
22  if (istation == 2)
23  max_ring = 2;
24  if (istation == 3)
25  max_ring = 2;
26  if (istation == 4)
27  max_ring = 1;
28 
29  for (int iring = detId.minRingId(); iring <= max_ring; iring++) {
30  max_istrip = 80;
31  max_cham = detId.maxChamberId();
32  if (istation == 1 && iring == 1)
33  max_cham = 36;
34  if (istation == 1 && iring == 2)
35  max_cham = 36;
36  if (istation == 1 && iring == 3)
37  max_cham = 36;
38  if (istation == 2 && iring == 1)
39  max_cham = 18;
40  if (istation == 2 && iring == 2)
41  max_cham = 36;
42  if (istation == 3 && iring == 1)
43  max_cham = 18;
44  if (istation == 3 && iring == 2)
45  max_cham = 36;
46  if (istation == 4 && iring == 1)
47  max_cham = 18;
48 
49  for (int ichamber = detId.minChamberId(); ichamber <= max_cham; ichamber++) {
50  for (int ilayer = detId.minLayerId(); ilayer <= detId.maxLayerId(); ilayer++) {
51  // station 1 ring 3 has 64 strips per layer instead of 80
52  if (istation == 1 && iring == 3)
53  max_istrip = 64;
54 
55  std::vector<CSCPedestals::Item> itemvector;
56  itemvector.resize(max_istrip);
57  id_layer = 100000 * iendcap + 10000 * istation + 1000 * iring + 10 * ichamber + ilayer;
58 
59  for (int istrip = 0; istrip < max_istrip; istrip++) {
60  itemvector[istrip].ped = ((double)rand() / ((double)(RAND_MAX) + (double)(1))) * 100 + meanped;
61  itemvector[istrip].rms = ((double)rand() / ((double)(RAND_MAX) + (double)(1))) + meanrms;
62  cnpedestals->pedestals[id_layer] = itemvector;
63  }
64  }
65  }
66  }
67  }
68  }
69  return cnpedestals;
70 }
71 
73  // the following line is needed to tell the framework what
74  // data is being produced
76  findingRecord<CSCPedestalsRcd>();
77  // now do what ever other initialization is needed
78 }
79 
81  // do anything here that needs to be done at desctruction time
82  // (e.g. close files, deallocate resources etc.)
83 }
84 
85 //
86 // member functions
87 //
88 
89 // ------------ method called to produce the data ------------
92 }
93 
95  const edm::IOVSyncValue &,
96  edm::ValidityInterval &oValidity) {
98 }
CSCFakePedestalsConditions(const edm::ParameterSet &)
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124
static int minRingId()
Definition: CSCDetId.h:240
std::unique_ptr< CSCPedestals > ReturnType
static int minEndcapId()
Definition: CSCDetId.h:236
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:82
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:19
ReturnType producePedestals(const CSCPedestalsRcd &)
static int maxStationId()
Definition: CSCDetId.h:239
static int maxRingId()
Definition: CSCDetId.h:241
static int minChamberId()
Definition: CSCDetId.h:242
PedestalMap pedestals
Definition: CSCPedestals.h:25
static const IOVSyncValue & beginOfTime()
Definition: IOVSyncValue.cc:88
static int minStationId()
Definition: CSCDetId.h:238
static int maxEndcapId()
Definition: CSCDetId.h:237
static int minLayerId()
Definition: CSCDetId.h:244
static int maxChamberId()
Definition: CSCDetId.h:243
Signal rand(Signal arg)
Definition: vlib.cc:442
static int maxLayerId()
Definition: CSCDetId.h:245
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override