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

Definition at line 20 of file SingleEleCalibSelector.h.

typedef container::const_iterator SingleEleCalibSelector::const_iterator

Definition at line 23 of file SingleEleCalibSelector.h.

Definition at line 22 of file SingleEleCalibSelector.h.

Definition at line 21 of file SingleEleCalibSelector.h.

Constructor & Destructor Documentation

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

ctor

Definition at line 26 of file SingleEleCalibSelector.cc.

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

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 }
T getParameter(std::string const &) const
SingleEleCalibSelector::~SingleEleCalibSelector ( )

dtor

Definition at line 108 of file SingleEleCalibSelector.cc.

108 {}

Member Function Documentation

const_iterator SingleEleCalibSelector::begin ( ) const
inline

Definition at line 30 of file SingleEleCalibSelector.h.

References selected_.

30 { return selected_.begin(); }
const_iterator SingleEleCalibSelector::end ( ) const
inline

Definition at line 31 of file SingleEleCalibSelector.h.

References select(), and selected_.

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

31 { return selected_.end(); }
double SingleEleCalibSelector::EnergyNxN ( const std::vector< DetId > &  vNxN,
const EBRecHitCollection EBhits,
const EERecHitCollection EEhits 
)
private

Definition at line 149 of file SingleEleCalibSelector.cc.

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

Referenced by select().

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 }
std::vector< EcalRecHit >::const_iterator const_iterator
iterator find(key_type k)
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.

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

Referenced by select().

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 }
std::vector< EcalRecHit >::const_iterator const_iterator
container::const_iterator const_iterator
const_iterator end() const
Definition: DetId.h:17
iterator find(key_type k)
void SingleEleCalibSelector::select ( edm::Handle< collection inputHandle,
const edm::Event iEvent,
const edm::EventSetup iSetup 
)

Definition at line 47 of file SingleEleCalibSelector.cc.

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

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::createObject(), end(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Views.LineDecayView.LineDecayContainer::mousePressEvent(), Vispa.Gui.PortConnection.PointToPointConnection::mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget::mousePressEvent(), and Vispa.Views.AbstractView.AbstractView::restoreSelection().

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
63  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
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 }
edm::ESHandle< CaloTopology > theCaloTopology
the selected collection
DetId findMaxHit(const std::vector< std::pair< DetId, float > > &v1, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
CaloTopology const * topology(0)
constexpr bool null() const
is this a null id ?
Definition: DetId.h:59
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:488
double EnergyNxN(const std::vector< DetId > &vNxN, const EBRecHitCollection *EBhits, const EERecHitCollection *EEhits)
Definition: DetId.h:17
virtual std::vector< DetId > getWindow(const DetId &id, const int &northSouthSize, const int &eastWestSize) const
T const * product() const
Definition: Handle.h:69
const CaloSubdetectorTopology * getSubdetectorTopology(const DetId &id) const
access the subdetector Topology for the given subdetector directly
Definition: CaloTopology.cc:17
T get() const
Definition: EventSetup.h:73

Member Data Documentation

double SingleEleCalibSelector::E3x3OE5x5Max_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::E3x3OE5x5Min_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::E3x3OPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

double SingleEleCalibSelector::E3x3OPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::E5x5OPoutMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

double SingleEleCalibSelector::E5x5OPoutMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

edm::InputTag SingleEleCalibSelector::EBrecHitLabel_
private

Definition at line 48 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

edm::InputTag SingleEleCalibSelector::EErecHitLabel_
private

Definition at line 49 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::ESCOPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

double SingleEleCalibSelector::ESCOPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::ESeedOPoutMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

double SingleEleCalibSelector::ESeedOPoutMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

double SingleEleCalibSelector::PinMPoutOPinMax_
private

Definition at line 47 of file SingleEleCalibSelector.h.

Referenced by SingleEleCalibSelector().

double SingleEleCalibSelector::PinMPoutOPinMin_
private

Definition at line 46 of file SingleEleCalibSelector.h.

Referenced by select(), and SingleEleCalibSelector().

container SingleEleCalibSelector::selected_
private

Definition at line 36 of file SingleEleCalibSelector.h.

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

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

the selected collection

Definition at line 38 of file SingleEleCalibSelector.h.

Referenced by select().