CMS 3D CMS Logo

SiPixelFakeGainForHLTESSource.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiPixelFakeGainForHLTESSource
4 // Class: SiPixelFakeGainForHLTESSource
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("SiPixelFakeGainForHLTESSource::SiPixelFakeGainForHLTESSource");
32  //the following line is needed to tell the framework what
33  // data is being produced
34  setWhatProduced(this);
35  findingRecord<SiPixelGainCalibrationForHLTRcd>();
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<SiPixelGainCalibrationForHLT> SiPixelFakeGainForHLTESSource::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> theSiPixelGainCalibration;
56  const std::pair<int, int>& detUnitDimensions = reader.getDetUnitDimensions(*detit);
57 
58  // Loop over columns and rows
59 
60  for (int i = 0; i < detUnitDimensions.first; i++) {
61  float totalGain = 0.0;
62  float totalPed = 0.0;
63  float totalEntries = 0.0;
64  for (int j = 0; j < detUnitDimensions.second; j++) {
65  nchannels++;
66  totalGain += 2.8;
67  totalPed += 28.2;
68  totalEntries++;
69  if ((j + 1) % 80 == 0) {
70  float gain = totalGain / totalEntries;
71  float ped = totalPed / totalEntries;
72 
73  obj->setData(ped, gain, theSiPixelGainCalibration);
74  totalGain = 0.;
75  totalPed = 0.;
76  totalEntries = 0.;
77  }
78  }
79  }
80 
81  //std::cout << "detid " << (*detit) << std::endl;
82 
83  SiPixelGainCalibrationForHLT::Range range(theSiPixelGainCalibration.begin(), theSiPixelGainCalibration.end());
84  int nCols = detUnitDimensions.first;
85  if (!obj->put(*detit, range, nCols))
86  edm::LogError("SiPixelFakeGainForHLTESSource")
87  << "[SiPixelFakeGainForHLTESSource::produce] detid already exists" << std::endl;
88  }
89 
90  //std::cout << "Modules = " << nmodules << " Channels " << nchannels << std::endl;
91 
92  //
93  return std::unique_ptr<SiPixelGainCalibrationForHLT>(obj);
94 }
95 
97  const edm::IOVSyncValue& iosv,
98  edm::ValidityInterval& oValidity) {
100  oValidity = infinity;
101 }
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
std::pair< ContainerIterator, ContainerIterator > Range
static const IOVSyncValue & beginOfTime()
Definition: IOVSyncValue.cc:88
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
const double infinity
Log< level::Info, false > LogInfo
virtual std::unique_ptr< SiPixelGainCalibrationForHLT > produce(const SiPixelGainCalibrationForHLTRcd &)
HLT enums.
SiPixelFakeGainForHLTESSource(const edm::ParameterSet &)