CMS 3D CMS Logo

SiPixelFakeGainOfflineESSource.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiPixelFakeGainOfflineESSource
4 // Class: SiPixelFakeGainOfflineESSource
5 //
13 //
14 // Original Author: Vincenzo Chiochia
15 // Created: Fri Apr 27 12:31:25 CEST 2007
16 //
17 //
18 
19 // user include files
20 
26 //
27 // constructors and destructor
28 //
30  : fp_(conf_.getParameter<edm::FileInPath>("file")) {
31  edm::LogInfo("SiPixelFakeGainOfflineESSource::SiPixelFakeGainOfflineESSource");
32  //the following line is needed to tell the framework what
33  // data is being produced
34  setWhatProduced(this);
35  findingRecord<SiPixelGainCalibrationOfflineRcd>();
36 }
37 
39  // do anything here that needs to be done at desctruction time
40  // (e.g. close files, deallocate resources etc.)
41 }
42 
43 std::unique_ptr<SiPixelGainCalibrationOffline> SiPixelFakeGainOfflineESSource::produce(
45  using namespace edm::es;
46  unsigned int nmodules = 0;
47  uint32_t nchannels = 0;
50  const std::vector<uint32_t>& DetIds = reader.getAllDetIds();
51 
52  // Loop over detectors
53  for (std::vector<uint32_t>::const_iterator detit = DetIds.begin(); detit != DetIds.end(); detit++) {
54  nmodules++;
55  std::vector<char> theSiPixelGainCalibrationOffline;
56  const std::pair<int, int>& detUnitDimensions = reader.getDetUnitDimensions(*detit);
57 
58  // Loop over columns and rows
59  for (int i = 0; i < detUnitDimensions.first; i++) {
60  float totalGain = 0.0;
61  float totalEntries = 0.0;
62  for (int j = 0; j < detUnitDimensions.second; j++) {
63  nchannels++;
64  totalGain += 2.8;
65  float ped = 28.2;
66  totalEntries += 1.0;
67  obj->setDataPedestal(ped, theSiPixelGainCalibrationOffline);
68  if ((j + 1) % 80 == 0) //compute the gain average after each ROC
69  {
70  float gain = totalGain / totalEntries;
71  obj->setDataGain(gain, 80, theSiPixelGainCalibrationOffline);
72  totalGain = 0;
73  totalEntries = 0.0;
74  }
75  }
76  }
77 
78  //std::cout << "detid " << (*detit) << std::endl;
79 
80  SiPixelGainCalibrationOffline::Range range(theSiPixelGainCalibrationOffline.begin(),
81  theSiPixelGainCalibrationOffline.end());
82  // the 80 in the line below represents the number of columns averaged over.
83  if (!obj->put(*detit, range, detUnitDimensions.first))
84  edm::LogError("SiPixelFakeGainOfflineESSource")
85  << "[SiPixelFakeGainOfflineESSource::produce] detid already exists" << std::endl;
86  }
87 
88  //std::cout << "Modules = " << nmodules << " Channels " << nchannels << std::endl;
89 
90  //
91  return std::unique_ptr<SiPixelGainCalibrationOffline>(obj);
92 }
93 
95  const edm::IOVSyncValue& iosv,
96  edm::ValidityInterval& oValidity) {
98  oValidity = infinity;
99 }
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:163
std::string fullPath() const
Definition: FileInPath.cc:161
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:82
reader
Definition: DQM.py:105
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
std::pair< ContainerIterator, ContainerIterator > Range
static const IOVSyncValue & beginOfTime()
Definition: IOVSyncValue.cc:88
const double infinity
Log< level::Info, false > LogInfo
SiPixelFakeGainOfflineESSource(const edm::ParameterSet &)
HLT enums.
virtual std::unique_ptr< SiPixelGainCalibrationOffline > produce(const SiPixelGainCalibrationOfflineRcd &)