Public Types | |
typedef std::auto_ptr < EcalShowerContainmentCorrections > | ReturnType |
Public Member Functions | |
EcalShowerContainmentCorrectionsESProducer (const edm::ParameterSet &) | |
ReturnType | produce (const EcalShowerContainmentCorrectionsRcd &) |
~EcalShowerContainmentCorrectionsESProducer () |
Description: Trivial ESProducer to provide EventSetup with (hard coded) shower containment corrections
Definition at line 33 of file EcalShowerContainmentCorrectionsESProducer.cc.
typedef std::auto_ptr<EcalShowerContainmentCorrections> EcalShowerContainmentCorrectionsESProducer::ReturnType |
Definition at line 39 of file EcalShowerContainmentCorrectionsESProducer.cc.
EcalShowerContainmentCorrectionsESProducer::EcalShowerContainmentCorrectionsESProducer | ( | const edm::ParameterSet & | iConfig | ) |
Definition at line 48 of file EcalShowerContainmentCorrectionsESProducer.cc.
References edm::ESProducer::setWhatProduced().
{ setWhatProduced(this); }
EcalShowerContainmentCorrectionsESProducer::~EcalShowerContainmentCorrectionsESProducer | ( | ) |
Definition at line 54 of file EcalShowerContainmentCorrectionsESProducer.cc.
{ }
EcalShowerContainmentCorrectionsESProducer::ReturnType EcalShowerContainmentCorrectionsESProducer::produce | ( | const EcalShowerContainmentCorrectionsRcd & | iRecord | ) |
Definition at line 62 of file EcalShowerContainmentCorrectionsESProducer.cc.
References filterCSVwithJSON::copy, EcalShowerContainmentCorrections::Coefficients::data, findQualityFiles::size, EBDetId::SMCRYSTALMODE, and makeHLTPrescaleTable::values.
{ using namespace edm::es; using namespace std; auto_ptr<EcalShowerContainmentCorrections> pEcalShowerContainmentCorrections(new EcalShowerContainmentCorrections) ; int sm=1; // in testbeam data sw believes we always are on sm01 // where is the n of xtals per sm coded ? for (int xtal=1; xtal<=1700 ; ++xtal){ // // from /afs/cern.ch/user/h/h4ecal/h4ana/data/gapCorrections/parametres_pol6_X204_2_1.out // corrections computed on module3 - (sm16, 1run) double values[] = { 0.998959, // 3x3 x right 0.00124547, -0.000348259, 6.04065e-006, 0.999032, // 3x3 x left 7.90628e-005, -0.000175699, -2.60715e-007, // 0.999983, // 3x3 y right -0.000132085, 2.04773e-005, -1.21629e-005, 1.00002, // 3x3 y left 0.00016518, 5.36343e-005, 1.32094e-005, // 0.998944, // 5x5 0.00100987, -0.000223207, 2.15615e-006, 0.999127, 0.000253437, -9.80656e-005, 1.48651e-006, 1.00006, -0.000179675, 8.15627e-005, -1.21549e-005, 1.00022, 0.000363728, 0.000128066, 1.54473e-005 }; const size_t size = sizeof values / sizeof values[0]; EcalShowerContainmentCorrections::Coefficients coeff; std::copy(values,values+size,coeff.data); EBDetId id(sm,xtal,EBDetId::SMCRYSTALMODE); // we are filling always the same group ... pEcalShowerContainmentCorrections->fillCorrectionCoefficients(id,3,coeff); } return pEcalShowerContainmentCorrections ; }