Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-10 03:53:26

0001 // -*- C++ -*-
0002 //
0003 // Package:    SiPixelFakeGainForHLTESSource
0004 // Class:      SiPixelFakeGainForHLTESSource
0005 //
0006 /**\class SiPixelFakeGainForHLTESSource SiPixelFakeGainForHLTESSource.h CalibTracker/SiPixelESProducer/src/SiPixelFakeGainForHLTESSource.cc
0007 
0008  Description: <one line class summary>
0009 
0010  Implementation:
0011      <Notes on implementation>
0012 */
0013 //
0014 // Original Author:  Vincenzo Chiochia
0015 //         Created:  Fri Apr 27 12:31:25 CEST 2007
0016 //
0017 //
0018 
0019 // user include files
0020 
0021 #include "CalibTracker/SiPixelESProducers/interface/SiPixelFakeGainForHLTESSource.h"
0022 #include "CalibTracker/SiPixelESProducers/interface/SiPixelDetInfoFileReader.h"
0023 #include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
0024 #include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
0025 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0026 //
0027 // constructors and destructor
0028 //
0029 SiPixelFakeGainForHLTESSource::SiPixelFakeGainForHLTESSource(const edm::ParameterSet& conf_)
0030     : fp_(conf_.getParameter<edm::FileInPath>("file")) {
0031   edm::LogInfo("SiPixelFakeGainForHLTESSource::SiPixelFakeGainForHLTESSource");
0032   //the following line is needed to tell the framework what
0033   // data is being produced
0034   setWhatProduced(this);
0035   findingRecord<SiPixelGainCalibrationForHLTRcd>();
0036 }
0037 
0038 SiPixelFakeGainForHLTESSource::~SiPixelFakeGainForHLTESSource() {
0039   // do anything here that needs to be done at desctruction time
0040   // (e.g. close files, deallocate resources etc.)
0041 }
0042 
0043 std::unique_ptr<SiPixelGainCalibrationForHLT> SiPixelFakeGainForHLTESSource::produce(
0044     const SiPixelGainCalibrationForHLTRcd&) {
0045   using namespace edm::es;
0046   SiPixelGainCalibrationForHLT* obj = new SiPixelGainCalibrationForHLT(25., 30., 2., 3.);
0047   SiPixelDetInfoFileReader reader(fp_.fullPath());
0048   const std::vector<uint32_t>& DetIds = reader.getAllDetIds();
0049 
0050   // Loop over detectors
0051   for (std::vector<uint32_t>::const_iterator detit = DetIds.begin(); detit != DetIds.end(); detit++) {
0052     std::vector<char> theSiPixelGainCalibration;
0053     const std::pair<int, int>& detUnitDimensions = reader.getDetUnitDimensions(*detit);
0054 
0055     // Loop over columns and rows
0056 
0057     for (int i = 0; i < detUnitDimensions.first; i++) {
0058       float totalGain = 0.0;
0059       float totalPed = 0.0;
0060       float totalEntries = 0.0;
0061       for (int j = 0; j < detUnitDimensions.second; j++) {
0062         totalGain += 2.8;
0063         totalPed += 28.2;
0064         totalEntries++;
0065         if ((j + 1) % 80 == 0) {
0066           float gain = totalGain / totalEntries;
0067           float ped = totalPed / totalEntries;
0068 
0069           obj->setData(ped, gain, theSiPixelGainCalibration);
0070           totalGain = 0.;
0071           totalPed = 0.;
0072           totalEntries = 0.;
0073         }
0074       }
0075     }
0076 
0077     //std::cout << "detid " << (*detit) << std::endl;
0078 
0079     SiPixelGainCalibrationForHLT::Range range(theSiPixelGainCalibration.begin(), theSiPixelGainCalibration.end());
0080     int nCols = detUnitDimensions.first;
0081     if (!obj->put(*detit, range, nCols))
0082       edm::LogError("SiPixelFakeGainForHLTESSource")
0083           << "[SiPixelFakeGainForHLTESSource::produce] detid already exists" << std::endl;
0084   }
0085 
0086   //
0087   return std::unique_ptr<SiPixelGainCalibrationForHLT>(obj);
0088 }
0089 
0090 void SiPixelFakeGainForHLTESSource::setIntervalFor(const edm::eventsetup::EventSetupRecordKey&,
0091                                                    const edm::IOVSyncValue& iosv,
0092                                                    edm::ValidityInterval& oValidity) {
0093   edm::ValidityInterval infinity(iosv.beginOfTime(), iosv.endOfTime());
0094   oValidity = infinity;
0095 }