CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 {
32  edm::LogInfo("SiPixelFakeGainForHLTESSource::SiPixelFakeGainForHLTESSource");
33  //the following line is needed to tell the framework what
34  // data is being produced
35  setWhatProduced(this);
36  findingRecord<SiPixelGainCalibrationForHLTRcd>();
37 }
38 
40 {
41 
42  // do anything here that needs to be done at desctruction time
43  // (e.g. close files, deallocate resources etc.)
44 
45 }
46 
47 std::auto_ptr<SiPixelGainCalibrationForHLT> SiPixelFakeGainForHLTESSource::produce(const SiPixelGainCalibrationForHLTRcd & )
48 {
49 
50  using namespace edm::es;
51  unsigned int nmodules = 0;
52  uint32_t nchannels = 0;
55  const std::vector<uint32_t> DetIds = reader.getAllDetIds();
56 
57  // Loop over detectors
58  for(std::vector<uint32_t>::const_iterator detit=DetIds.begin(); detit!=DetIds.end(); detit++) {
59  nmodules++;
60  std::vector<char> theSiPixelGainCalibration;
61  const std::pair<int, int> & detUnitDimensions = reader.getDetUnitDimensions(*detit);
62 
63  // Loop over columns and rows
64 
65  for(int i=0; i<detUnitDimensions.first; i++) {
66  float totalGain = 0.0;
67  float totalPed = 0.0;
68  float totalEntries=0.0;
69  for(int j=0; j<detUnitDimensions.second; j++) {
70  nchannels++;
71  totalGain += 2.8;
72  totalPed += 28.2;
73  totalEntries ++;
74  if((j+1)%80==0){
75  float gain = totalGain/totalEntries;
76  float ped = totalPed/totalEntries;
77 
78  obj->setData(ped,gain, theSiPixelGainCalibration);
79  totalGain=0.;
80  totalPed=0.;
81  totalEntries=0.;
82  }
83  }
84  }
85 
86  //std::cout << "detid " << (*detit) << std::endl;
87 
88  SiPixelGainCalibrationForHLT::Range range(theSiPixelGainCalibration.begin(),theSiPixelGainCalibration.end());
89  int nCols = detUnitDimensions.first;
90  if( !obj->put(*detit,range,nCols) )
91  edm::LogError("SiPixelFakeGainForHLTESSource")<<"[SiPixelFakeGainForHLTESSource::produce] detid already exists"<<std::endl;
92  }
93 
94  //std::cout << "Modules = " << nmodules << " Channels " << nchannels << std::endl;
95 
96 
97  //
98  return std::auto_ptr<SiPixelGainCalibrationForHLT>(obj);
99 
100 
101 }
102 
104  const edm::IOVSyncValue& iosv,
105  edm::ValidityInterval& oValidity ) {
107  oValidity = infinity;
108 }
int i
Definition: DBlmapReader.cc:9
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:97
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
std::pair< ContainerIterator, ContainerIterator > Range
static const IOVSyncValue & beginOfTime()
virtual std::auto_ptr< SiPixelGainCalibrationForHLT > produce(const SiPixelGainCalibrationForHLTRcd &)
const double infinity
int j
Definition: DBlmapReader.cc:9
virtual void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &)
std::string fullPath() const
Definition: FileInPath.cc:165
SiPixelFakeGainForHLTESSource(const edm::ParameterSet &)