CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
EgammaRegressionContainer Class Reference

#include <EgammaRegressionContainer.h>

Public Member Functions

 EgammaRegressionContainer (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
float operator() (const float et, const bool isEB, const bool isSaturated, const float *data) const
 
void setEventContent (const edm::EventSetup &iSetup)
 
bool useLowEtBin (const float et, const bool isSaturated) const
 
 ~EgammaRegressionContainer ()
 

Static Public Member Functions

static edm::ParameterSetDescription makePSetDescription ()
 

Private Attributes

const GBRForestDebHighEtForest_ = nullptr
 
const edm::ESGetToken< GBRForestD, GBRDWrapperRcdebHighEtForestToken_
 
const GBRForestDebLowEtForest_ = nullptr
 
const edm::ESGetToken< GBRForestD, GBRDWrapperRcdebLowEtForestToken_
 
const GBRForestDeeHighEtForest_ = nullptr
 
const edm::ESGetToken< GBRForestD, GBRDWrapperRcdeeHighEtForestToken_
 
const GBRForestDeeLowEtForest_ = nullptr
 
const edm::ESGetToken< GBRForestD, GBRDWrapperRcdeeLowEtForestToken_
 
bool forceHighEnergyTrainingIfSaturated_
 
const float lowEtHighEtBoundary_
 
const EgammaBDTOutputTransformer outputTransformerHighEt_
 
const EgammaBDTOutputTransformer outputTransformerLowEt_
 

Detailed Description

Definition at line 27 of file EgammaRegressionContainer.h.

Constructor & Destructor Documentation

◆ EgammaRegressionContainer()

EgammaRegressionContainer::EgammaRegressionContainer ( const edm::ParameterSet iConfig,
edm::ConsumesCollector cc 
)

Definition at line 9 of file EgammaRegressionContainer.cc.

10  : outputTransformerLowEt_(iConfig.getParameter<double>("rangeMinLowEt"),
11  iConfig.getParameter<double>("rangeMaxLowEt")),
12  outputTransformerHighEt_(iConfig.getParameter<double>("rangeMinHighEt"),
13  iConfig.getParameter<double>("rangeMaxHighEt")),
14  forceHighEnergyTrainingIfSaturated_(iConfig.getParameter<bool>("forceHighEnergyTrainingIfSaturated")),
15  lowEtHighEtBoundary_(iConfig.getParameter<double>("lowEtHighEtBoundary")),
16  ebLowEtForestToken_{cc.esConsumes(iConfig.getParameter<edm::ESInputTag>("ebLowEtForestName"))},
17  ebHighEtForestToken_{cc.esConsumes(iConfig.getParameter<edm::ESInputTag>("ebHighEtForestName"))},
18  eeLowEtForestToken_{cc.esConsumes(iConfig.getParameter<edm::ESInputTag>("eeLowEtForestName"))},
19  eeHighEtForestToken_{cc.esConsumes(iConfig.getParameter<edm::ESInputTag>("eeHighEtForestName"))} {}

References edm::ParameterSet::getParameter().

◆ ~EgammaRegressionContainer()

EgammaRegressionContainer::~EgammaRegressionContainer ( )
inline

Definition at line 30 of file EgammaRegressionContainer.h.

30 {}

Member Function Documentation

◆ makePSetDescription()

edm::ParameterSetDescription EgammaRegressionContainer::makePSetDescription ( )
static

Definition at line 21 of file EgammaRegressionContainer.cc.

21  {
23  desc.add<double>("rangeMinLowEt", -1.);
24  desc.add<double>("rangeMaxLowEt", 3.0);
25  desc.add<double>("rangeMinHighEt", -1.);
26  desc.add<double>("rangeMaxHighEt", 3.0);
27  desc.add<double>("lowEtHighEtBoundary", 50.);
28  desc.add<bool>("forceHighEnergyTrainingIfSaturated", false);
29  desc.add<edm::ESInputTag>("ebLowEtForestName", edm::ESInputTag{"", "electron_eb_ECALTRK_lowpt"});
30  desc.add<edm::ESInputTag>("ebHighEtForestName", edm::ESInputTag{"", "electron_eb_ECALTRK"});
31  desc.add<edm::ESInputTag>("eeLowEtForestName", edm::ESInputTag{"", "electron_ee_ECALTRK_lowpt"});
32  desc.add<edm::ESInputTag>("eeHighEtForestName", edm::ESInputTag{"", "electron_ee_ECALTRK"});
33  return desc;
34 }

References submitPVResolutionJobs::desc.

Referenced by EpCombinationTool::makePSetDescription().

◆ operator()()

float EgammaRegressionContainer::operator() ( const float  et,
const bool  isEB,
const bool  isSaturated,
const float *  data 
) const

◆ setEventContent()

void EgammaRegressionContainer::setEventContent ( const edm::EventSetup iSetup)

◆ useLowEtBin()

bool EgammaRegressionContainer::useLowEtBin ( const float  et,
const bool  isSaturated 
) const

Member Data Documentation

◆ ebHighEtForest_

const GBRForestD* EgammaRegressionContainer::ebHighEtForest_ = nullptr
private

Definition at line 53 of file EgammaRegressionContainer.h.

Referenced by operator()(), and setEventContent().

◆ ebHighEtForestToken_

const edm::ESGetToken<GBRForestD, GBRDWrapperRcd> EgammaRegressionContainer::ebHighEtForestToken_
private

Definition at line 48 of file EgammaRegressionContainer.h.

Referenced by setEventContent().

◆ ebLowEtForest_

const GBRForestD* EgammaRegressionContainer::ebLowEtForest_ = nullptr
private

Definition at line 52 of file EgammaRegressionContainer.h.

Referenced by operator()(), and setEventContent().

◆ ebLowEtForestToken_

const edm::ESGetToken<GBRForestD, GBRDWrapperRcd> EgammaRegressionContainer::ebLowEtForestToken_
private

Definition at line 47 of file EgammaRegressionContainer.h.

Referenced by setEventContent().

◆ eeHighEtForest_

const GBRForestD* EgammaRegressionContainer::eeHighEtForest_ = nullptr
private

Definition at line 55 of file EgammaRegressionContainer.h.

Referenced by operator()(), and setEventContent().

◆ eeHighEtForestToken_

const edm::ESGetToken<GBRForestD, GBRDWrapperRcd> EgammaRegressionContainer::eeHighEtForestToken_
private

Definition at line 50 of file EgammaRegressionContainer.h.

Referenced by setEventContent().

◆ eeLowEtForest_

const GBRForestD* EgammaRegressionContainer::eeLowEtForest_ = nullptr
private

Definition at line 54 of file EgammaRegressionContainer.h.

Referenced by operator()(), and setEventContent().

◆ eeLowEtForestToken_

const edm::ESGetToken<GBRForestD, GBRDWrapperRcd> EgammaRegressionContainer::eeLowEtForestToken_
private

Definition at line 49 of file EgammaRegressionContainer.h.

Referenced by setEventContent().

◆ forceHighEnergyTrainingIfSaturated_

bool EgammaRegressionContainer::forceHighEnergyTrainingIfSaturated_
private

Definition at line 44 of file EgammaRegressionContainer.h.

Referenced by useLowEtBin().

◆ lowEtHighEtBoundary_

const float EgammaRegressionContainer::lowEtHighEtBoundary_
private

Definition at line 45 of file EgammaRegressionContainer.h.

Referenced by useLowEtBin().

◆ outputTransformerHighEt_

const EgammaBDTOutputTransformer EgammaRegressionContainer::outputTransformerHighEt_
private

Definition at line 42 of file EgammaRegressionContainer.h.

Referenced by operator()().

◆ outputTransformerLowEt_

const EgammaBDTOutputTransformer EgammaRegressionContainer::outputTransformerLowEt_
private

Definition at line 41 of file EgammaRegressionContainer.h.

Referenced by operator()().

EgammaRegressionContainer::forceHighEnergyTrainingIfSaturated_
bool forceHighEnergyTrainingIfSaturated_
Definition: EgammaRegressionContainer.h:44
EgammaRegressionContainer::outputTransformerLowEt_
const EgammaBDTOutputTransformer outputTransformerLowEt_
Definition: EgammaRegressionContainer.h:41
edm::ESInputTag
Definition: ESInputTag.h:87
GBRForestD::GetResponse
double GetResponse(const float *vector) const
Definition: GBRForestD.h:52
EgammaRegressionContainer::eeHighEtForestToken_
const edm::ESGetToken< GBRForestD, GBRDWrapperRcd > eeHighEtForestToken_
Definition: EgammaRegressionContainer.h:50
EgammaRegressionContainer::lowEtHighEtBoundary_
const float lowEtHighEtBoundary_
Definition: EgammaRegressionContainer.h:45
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
EgammaRegressionContainer::ebLowEtForest_
const GBRForestD * ebLowEtForest_
Definition: EgammaRegressionContainer.h:52
EgammaRegressionContainer::ebLowEtForestToken_
const edm::ESGetToken< GBRForestD, GBRDWrapperRcd > ebLowEtForestToken_
Definition: EgammaRegressionContainer.h:47
EgammaRegressionContainer::ebHighEtForestToken_
const edm::ESGetToken< GBRForestD, GBRDWrapperRcd > ebHighEtForestToken_
Definition: EgammaRegressionContainer.h:48
CastorSimpleRecAlgoImpl::isSaturated
bool isSaturated(const Digi &digi, const int &maxADCvalue, int ifirst, int n)
Definition: CastorSimpleRecAlgo.cc:97
EgammaRegressionContainer::eeLowEtForestToken_
const edm::ESGetToken< GBRForestD, GBRDWrapperRcd > eeLowEtForestToken_
Definition: EgammaRegressionContainer.h:49
EgammaRegressionContainer::eeHighEtForest_
const GBRForestD * eeHighEtForest_
Definition: EgammaRegressionContainer.h:55
EgHLTOffHistBins_cfi.et
et
Definition: EgHLTOffHistBins_cfi.py:8
cc
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:120
EgammaRegressionContainer::eeLowEtForest_
const GBRForestD * eeLowEtForest_
Definition: EgammaRegressionContainer.h:54
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
EgammaRegressionContainer::outputTransformerHighEt_
const EgammaBDTOutputTransformer outputTransformerHighEt_
Definition: EgammaRegressionContainer.h:42
EgammaRegressionContainer::useLowEtBin
bool useLowEtBin(const float et, const bool isSaturated) const
Definition: EgammaRegressionContainer.cc:60
EgammaRegressionContainer::ebHighEtForest_
const GBRForestD * ebHighEtForest_
Definition: EgammaRegressionContainer.h:53