CMS 3D CMS Logo

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