CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
SingleEleCalibSelector Class Reference

#include <SingleEleCalibSelector.h>

Public Types

typedef reco::GsfElectronCollection collection
 
typedef container::const_iterator const_iterator
 
typedef std::vector< const reco::GsfElectron * > container
 
typedef reco::GsfElectronRef electron
 

Public Member Functions

const_iterator begin () const
 
const_iterator end () const
 
void select (edm::Handle< collection >, const edm::Event &, const edm::EventSetup &)
 
 SingleEleCalibSelector (const edm::ParameterSet &iConfig)
 ctor More...
 
 ~SingleEleCalibSelector ()
 dtor More...
 

Private Member Functions

double EnergyNxN (const std::vector< DetId > &vNxN, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
 
DetId findMaxHit (const std::vector< std::pair< DetId, float > > &v1, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
 

Private Attributes

double E3x3OE5x5Max_
 
double E3x3OE5x5Min_
 
double E3x3OPinMax_
 
double E3x3OPinMin_
 
double E5x5OPoutMax_
 
double E5x5OPoutMin_
 
edm::InputTag EBrecHitLabel_
 
edm::InputTag EErecHitLabel_
 
double ESCOPinMax_
 
double ESCOPinMin_
 
double ESeedOPoutMax_
 
double ESeedOPoutMin_
 
double PinMPoutOPinMax_
 
double PinMPoutOPinMin_
 
container selected_
 
edm::ESHandle< CaloTopologytheCaloTopology
 the selected collection More...
 

Detailed Description

Definition at line 18 of file SingleEleCalibSelector.h.

Member Typedef Documentation

◆ collection

Definition at line 20 of file SingleEleCalibSelector.h.

◆ const_iterator

typedef container::const_iterator SingleEleCalibSelector::const_iterator

Definition at line 23 of file SingleEleCalibSelector.h.

◆ container

Definition at line 22 of file SingleEleCalibSelector.h.

◆ electron

Definition at line 21 of file SingleEleCalibSelector.h.

Constructor & Destructor Documentation

◆ SingleEleCalibSelector()

SingleEleCalibSelector::SingleEleCalibSelector ( const edm::ParameterSet iConfig)

ctor

Definition at line 26 of file SingleEleCalibSelector.cc.

26  {
27  ESCOPinMin_ = iConfig.getParameter<double>("ESCOPinMin");
28  ESCOPinMax_ = iConfig.getParameter<double>("ESCOPinMax");
29  ESeedOPoutMin_ = iConfig.getParameter<double>("ESeedOPoutMin");
30  ESeedOPoutMax_ = iConfig.getParameter<double>("ESeedOPoutMax");
31  PinMPoutOPinMin_ = iConfig.getParameter<double>("PinMPoutOPinMin");
32  PinMPoutOPinMax_ = iConfig.getParameter<double>("PinMPoutOPinMax");
33  E5x5OPoutMin_ = iConfig.getParameter<double>("E5x5OPoutMin");
34  E5x5OPoutMax_ = iConfig.getParameter<double>("E5x5OPoutMax");
35  E3x3OPinMin_ = iConfig.getParameter<double>("E3x3OPinMin");
36  E3x3OPinMax_ = iConfig.getParameter<double>("E3x3OPinMax");
37  E3x3OE5x5Min_ = iConfig.getParameter<double>("E3x3OE5x5Min");
38  E3x3OE5x5Max_ = iConfig.getParameter<double>("E3x3OE5x5Max");
39  EBrecHitLabel_ = iConfig.getParameter<edm::InputTag>("alcaBarrelHitCollection");
40  EErecHitLabel_ = iConfig.getParameter<edm::InputTag>("alcaEndcapHitCollection");
41 }

References E3x3OE5x5Max_, E3x3OE5x5Min_, E3x3OPinMax_, E3x3OPinMin_, E5x5OPoutMax_, E5x5OPoutMin_, EBrecHitLabel_, EErecHitLabel_, ESCOPinMax_, ESCOPinMin_, ESeedOPoutMax_, ESeedOPoutMin_, edm::ParameterSet::getParameter(), PinMPoutOPinMax_, and PinMPoutOPinMin_.

◆ ~SingleEleCalibSelector()

SingleEleCalibSelector::~SingleEleCalibSelector ( )

dtor

Definition at line 108 of file SingleEleCalibSelector.cc.

108 {}

Member Function Documentation

◆ begin()

const_iterator SingleEleCalibSelector::begin ( ) const
inline

Definition at line 30 of file SingleEleCalibSelector.h.

30 { return selected_.begin(); }

References selected_.

◆ end()

const_iterator SingleEleCalibSelector::end ( ) const
inline

Definition at line 31 of file SingleEleCalibSelector.h.

31 { return selected_.end(); }

References selected_.

Referenced by Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().

◆ EnergyNxN()

double SingleEleCalibSelector::EnergyNxN ( const std::vector< DetId > &  vNxN,
const EBRecHitCollection EBhits,
const EERecHitCollection EEhits 
)
private

Definition at line 149 of file SingleEleCalibSelector.cc.

151  {
152  double dummy = 0.;
153  int window_size = vNxN.size();
154  for (int ixtal = 0; ixtal < window_size; ixtal++) {
155  if (vNxN[ixtal].subdetId() == EcalBarrel) {
157  it_rechit = EBhits->find(vNxN[ixtal]);
158  dummy += it_rechit->energy();
159  } else {
161  it_rechit = EEhits->find(vNxN[ixtal]);
162  dummy += it_rechit->energy();
163  }
164  }
165 
166  return dummy;
167 }

References EcalBarrel, and edm::SortedCollection< T, SORT >::find().

Referenced by select().

◆ findMaxHit()

DetId SingleEleCalibSelector::findMaxHit ( const std::vector< std::pair< DetId, float > > &  v1,
const EBRecHitCollection EBhits,
const EERecHitCollection EEhits 
)
private

Definition at line 113 of file SingleEleCalibSelector.cc.

115  {
116  double currEnergy = 0.;
117  DetId maxHit;
118  for (std::vector<std::pair<DetId, float> >::const_iterator idsIt = v1.begin(); idsIt != v1.end(); ++idsIt) {
119  if (idsIt->first.subdetId() == EcalBarrel) {
121  itrechit = EBhits->find((*idsIt).first);
122  if (itrechit == EBhits->end()) {
123  edm::LogInfo("reading") << "[findMaxHit] rechit not found! ";
124  continue;
125  }
126  //FIXME: use fraction ??
127  if (itrechit->energy() > currEnergy) {
128  currEnergy = itrechit->energy();
129  maxHit = (*idsIt).first;
130  }
131  } else {
133  itrechit = EEhits->find((*idsIt).first);
134  if (itrechit == EEhits->end()) {
135  edm::LogInfo("reading") << "[findMaxHit] rechit not found! ";
136  continue;
137  }
138 
139  if (itrechit->energy() > currEnergy) {
140  currEnergy = itrechit->energy();
141  maxHit = (*idsIt).first;
142  }
143  }
144  }
145  return maxHit;
146 }

References EcalBarrel, edm::SortedCollection< T, SORT >::end(), edm::SortedCollection< T, SORT >::find(), and MTVHistoProducerAlgoForTrackerBlock_cfi::maxHit.

Referenced by select().

◆ select()

void SingleEleCalibSelector::select ( edm::Handle< collection inputHandle,
const edm::Event iEvent,
const edm::EventSetup iSetup 
)

Definition at line 47 of file SingleEleCalibSelector.cc.

49 {
50  selected_.clear();
51 
52  //Get the EB rechit collection
53  edm::Handle<EBRecHitCollection> barrelRecHitsHandle;
54  iEvent.getByLabel(EBrecHitLabel_, barrelRecHitsHandle);
55  const EBRecHitCollection* EBHitsColl = barrelRecHitsHandle.product();
56 
57  //Get the EE rechit collection
58  edm::Handle<EERecHitCollection> endcapRecHitsHandle;
59  iEvent.getByLabel(EErecHitLabel_, endcapRecHitsHandle);
60  const EERecHitCollection* EEHitsColl = endcapRecHitsHandle.product();
61 
62  //To deal with Geometry
64 
65  //Loop over electrons
66  for (collection::const_iterator ele = (*inputHandle).begin(); ele != (*inputHandle).end(); ++ele) {
67  //Find DetID max hit
68  DetId maxHitId = findMaxHit((*ele).superCluster()->hitsAndFractions(), EBHitsColl, EEHitsColl);
69 
70  if (maxHitId.null()) {
71  std::cout << " Null Id" << std::endl;
72  continue;
73  }
74 
75  // Find 3x3 and 5x5 windows around xtal max and compute E3x3,E5x5
76  double E5x5 = 0.;
77  double E3x3 = 0.;
78 
80  int WindowSize = 5;
81  std::vector<DetId> m5x5aroundMax = topology->getWindow(maxHitId, WindowSize, WindowSize);
82  E5x5 = EnergyNxN(m5x5aroundMax, EBHitsColl, EEHitsColl);
83  WindowSize = 3;
84  std::vector<DetId> m3x3aroundMax = topology->getWindow(maxHitId, WindowSize, WindowSize);
85  E3x3 = EnergyNxN(m3x3aroundMax, EBHitsColl, EEHitsColl);
86 
87  double pin = ele->trackMomentumAtVtx().R();
88  double piMpoOpi = (pin - ele->trackMomentumOut().R()) / pin;
89  double E5x5OPout = E5x5 / ele->trackMomentumOut().R();
90  double E3x3OPin = E3x3 / pin;
91  double E3x3OE5x5 = E3x3 / E5x5;
92  double EseedOPout = ele->eSeedClusterOverPout();
93  double EoPin = ele->eSuperClusterOverP();
94 
95  if (piMpoOpi > PinMPoutOPinMin_ && piMpoOpi < PinMPoutOPinMax_ && EseedOPout > ESeedOPoutMin_ &&
96  EseedOPout < ESeedOPoutMax_ && EoPin > ESCOPinMin_ && EoPin < ESCOPinMax_ && E5x5OPout > E5x5OPoutMin_ &&
97  E5x5OPout < E5x5OPoutMax_ && E3x3OPin > E3x3OPinMin_ && E3x3OPin < E3x3OPinMax_ && E3x3OE5x5 > E3x3OE5x5Min_ &&
98  E3x3OE5x5 < E3x3OE5x5Max_) {
99  selected_.push_back(&(*ele));
100  }
101  }
102 
103  return;
104 }

References gather_cfg::cout, E3x3OE5x5Max_, E3x3OE5x5Min_, E3x3OPinMin_, E5x5OPoutMin_, EBrecHitLabel_, DetId::Ecal, EErecHitLabel_, EnergyNxN(), ESCOPinMin_, ESeedOPoutMin_, findMaxHit(), edm::EventSetup::get(), get, CaloTopology::getSubdetectorTopology(), CaloTopology::getWindow(), iEvent, DetId::null(), PinMPoutOPinMin_, edm::Handle< T >::product(), selected_, DetId::subdetId(), theCaloTopology, and ecaldqm::topology().

Member Data Documentation

◆ E3x3OE5x5Max_

double SingleEleCalibSelector::E3x3OE5x5Max_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ E3x3OE5x5Min_

double SingleEleCalibSelector::E3x3OE5x5Min_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ E3x3OPinMax_

double SingleEleCalibSelector::E3x3OPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

◆ E3x3OPinMin_

double SingleEleCalibSelector::E3x3OPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ E5x5OPoutMax_

double SingleEleCalibSelector::E5x5OPoutMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

◆ E5x5OPoutMin_

double SingleEleCalibSelector::E5x5OPoutMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ EBrecHitLabel_

edm::InputTag SingleEleCalibSelector::EBrecHitLabel_
private

Definition at line 48 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ EErecHitLabel_

edm::InputTag SingleEleCalibSelector::EErecHitLabel_
private

Definition at line 49 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ ESCOPinMax_

double SingleEleCalibSelector::ESCOPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

◆ ESCOPinMin_

double SingleEleCalibSelector::ESCOPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ ESeedOPoutMax_

double SingleEleCalibSelector::ESeedOPoutMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

◆ ESeedOPoutMin_

double SingleEleCalibSelector::ESeedOPoutMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ PinMPoutOPinMax_

double SingleEleCalibSelector::PinMPoutOPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

◆ PinMPoutOPinMin_

double SingleEleCalibSelector::PinMPoutOPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

◆ selected_

container SingleEleCalibSelector::selected_
private

Definition at line 36 of file SingleEleCalibSelector.h.

Referenced by begin(), end(), and select().

◆ theCaloTopology

edm::ESHandle<CaloTopology> SingleEleCalibSelector::theCaloTopology
private

the selected collection

Definition at line 38 of file SingleEleCalibSelector.h.

Referenced by select().

SingleEleCalibSelector::E5x5OPoutMin_
double E5x5OPoutMin_
Definition: SingleEleCalibSelector.h:46
edm::SortedCollection< EcalRecHit >::const_iterator
std::vector< EcalRecHit >::const_iterator const_iterator
Definition: SortedCollection.h:80
edm::Handle::product
T const * product() const
Definition: Handle.h:70
CaloTopology::getWindow
std::vector< DetId > getWindow(const DetId &id, const int &northSouthSize, const int &eastWestSize) const
Get the neighbors of the given cell in a window of given size.
Definition: CaloTopology.cc:64
gather_cfg.cout
cout
Definition: gather_cfg.py:144
edm::LogInfo
Definition: MessageLogger.h:254
SingleEleCalibSelector::ESCOPinMin_
double ESCOPinMin_
Definition: SingleEleCalibSelector.h:46
SingleEleCalibSelector::EnergyNxN
double EnergyNxN(const std::vector< DetId > &vNxN, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
Definition: SingleEleCalibSelector.cc:149
SingleEleCalibSelector::PinMPoutOPinMax_
double PinMPoutOPinMax_
Definition: SingleEleCalibSelector.h:47
edm::SortedCollection< EcalRecHit >
DetId::null
constexpr bool null() const
is this a null id ?
Definition: DetId.h:59
CaloTopologyRecord
Definition: CaloTopologyRecord.h:10
SingleEleCalibSelector::E3x3OE5x5Max_
double E3x3OE5x5Max_
Definition: SingleEleCalibSelector.h:47
edm::Handle
Definition: AssociativeIterator.h:50
SingleEleCalibSelector::E5x5OPoutMax_
double E5x5OPoutMax_
Definition: SingleEleCalibSelector.h:47
EcalBarrel
Definition: EcalSubdetector.h:10
SingleEleCalibSelector::PinMPoutOPinMin_
double PinMPoutOPinMin_
Definition: SingleEleCalibSelector.h:46
SingleEleCalibSelector::EErecHitLabel_
edm::InputTag EErecHitLabel_
Definition: SingleEleCalibSelector.h:49
DetId
Definition: DetId.h:17
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
ecaldqm::topology
const CaloTopology * topology(nullptr)
SingleEleCalibSelector::ESeedOPoutMax_
double ESeedOPoutMax_
Definition: SingleEleCalibSelector.h:47
SingleEleCalibSelector::E3x3OPinMin_
double E3x3OPinMin_
Definition: SingleEleCalibSelector.h:46
SingleEleCalibSelector::EBrecHitLabel_
edm::InputTag EBrecHitLabel_
Definition: SingleEleCalibSelector.h:48
MTVHistoProducerAlgoForTrackerBlock_cfi.maxHit
maxHit
Definition: MTVHistoProducerAlgoForTrackerBlock_cfi.py:37
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
SingleEleCalibSelector::theCaloTopology
edm::ESHandle< CaloTopology > theCaloTopology
the selected collection
Definition: SingleEleCalibSelector.h:38
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
CaloTopology::getSubdetectorTopology
const CaloSubdetectorTopology * getSubdetectorTopology(const DetId &id) const
access the subdetector Topology for the given subdetector directly
Definition: CaloTopology.cc:17
iEvent
int iEvent
Definition: GenABIO.cc:224
SingleEleCalibSelector::selected_
container selected_
Definition: SingleEleCalibSelector.h:36
CaloSubdetectorTopology
Definition: CaloSubdetectorTopology.h:17
SingleEleCalibSelector::findMaxHit
DetId findMaxHit(const std::vector< std::pair< DetId, float > > &v1, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
Definition: SingleEleCalibSelector.cc:113
SingleEleCalibSelector::ESeedOPoutMin_
double ESeedOPoutMin_
Definition: SingleEleCalibSelector.h:46
DetId::Ecal
Definition: DetId.h:27
get
#define get
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
edm::SortedCollection::find
iterator find(key_type k)
Definition: SortedCollection.h:240
SingleEleCalibSelector::E3x3OPinMax_
double E3x3OPinMax_
Definition: SingleEleCalibSelector.h:47
dummy
Definition: DummySelector.h:38
SingleEleCalibSelector::E3x3OE5x5Min_
double E3x3OE5x5Min_
Definition: SingleEleCalibSelector.h:46
edm::InputTag
Definition: InputTag.h:15
SingleEleCalibSelector::ESCOPinMax_
double ESCOPinMax_
Definition: SingleEleCalibSelector.h:47
SingleEleCalibSelector::const_iterator
container::const_iterator const_iterator
Definition: SingleEleCalibSelector.h:23