CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
EgammaHLTMulti5x5ClusterProducer Class Reference

#include <EgammaHLTMulti5x5ClusterProducer.h>

Inheritance diagram for EgammaHLTMulti5x5ClusterProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 EgammaHLTMulti5x5ClusterProducer (const edm::ParameterSet &ps)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~EgammaHLTMulti5x5ClusterProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

void clusterizeECALPart (edm::Event &evt, const edm::EventSetup &es, const std::string &hitProducer, const std::string &hitCollection, const std::string &clusterCollection, const std::vector< EcalEtaPhiRegion > &regions, const reco::CaloID::Detectors detector)
 
bool counterExceeded () const
 
const EcalRecHitCollectiongetCollection (edm::Event &evt, const std::string &hitProducer_, const std::string &hitCollection_)
 
void outputValidationInfo (reco::CaloClusterPtrVector &clusterPtrVector)
 

Private Attributes

std::string barrelClusterCollection_
 
std::string barrelHitCollection_
 
edm::InputTag barrelHitProducer_
 
bool doBarrel_
 
bool doEndcaps_
 
bool doIsolated_
 
std::string endcapClusterCollection_
 
std::string endcapHitCollection_
 
edm::InputTag endcapHitProducer_
 
double l1LowerThr_
 
double l1LowerThrIgnoreIsolation_
 
edm::InputTag l1TagIsolated_
 
edm::InputTag l1TagNonIsolated_
 
double l1UpperThr_
 
Multi5x5ClusterAlgoMulti5x5_p
 
int nEvt_
 
int nMaxPrintout_
 
PositionCalc posCalculator_
 
double regionEtaMargin_
 
double regionPhiMargin_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 26 of file EgammaHLTMulti5x5ClusterProducer.h.

Constructor & Destructor Documentation

EgammaHLTMulti5x5ClusterProducer::EgammaHLTMulti5x5ClusterProducer ( const edm::ParameterSet ps)

Definition at line 43 of file EgammaHLTMulti5x5ClusterProducer.cc.

References barrelClusterCollection_, barrelHitCollection_, barrelHitProducer_, doBarrel_, doEndcaps_, doIsolated_, endcapClusterCollection_, endcapHitCollection_, endcapHitProducer_, edm::ParameterSet::getParameter(), l1LowerThr_, l1LowerThrIgnoreIsolation_, l1TagIsolated_, l1TagNonIsolated_, l1UpperThr_, Multi5x5_p, nEvt_, posCalculator_, regionEtaMargin_, and regionPhiMargin_.

44 {
45 
46  doBarrel_ = ps.getParameter<bool>("doBarrel");
47  doEndcaps_ = ps.getParameter<bool>("doEndcaps");
48  doIsolated_ = ps.getParameter<bool>("doIsolated");
49 
50  // Parameters to identify the hit collections
51  barrelHitProducer_ = ps.getParameter<edm::InputTag>("barrelHitProducer");
52  endcapHitProducer_ = ps.getParameter<edm::InputTag>("endcapHitProducer");
53  barrelHitCollection_ = ps.getParameter<std::string>("barrelHitCollection");
54  endcapHitCollection_ = ps.getParameter<std::string>("endcapHitCollection");
55 
56  // The names of the produced cluster collections
57  barrelClusterCollection_ = ps.getParameter<std::string>("barrelClusterCollection");
58  endcapClusterCollection_ = ps.getParameter<std::string>("endcapClusterCollection");
59 
60  // Multi5x5 algorithm parameters
61  double barrelSeedThreshold = ps.getParameter<double>("Multi5x5BarrelSeedThr");
62  double endcapSeedThreshold = ps.getParameter<double>("Multi5x5EndcapSeedThr");
63 
64  // L1 matching parameters
65  l1TagIsolated_ = ps.getParameter< edm::InputTag > ("l1TagIsolated");
66  l1TagNonIsolated_ = ps.getParameter< edm::InputTag > ("l1TagNonIsolated");
67  l1LowerThr_ = ps.getParameter<double> ("l1LowerThr");
68  l1UpperThr_ = ps.getParameter<double> ("l1UpperThr");
69  l1LowerThrIgnoreIsolation_ = ps.getParameter<double> ("l1LowerThrIgnoreIsolation");
70 
71  regionEtaMargin_ = ps.getParameter<double>("regionEtaMargin");
72  regionPhiMargin_ = ps.getParameter<double>("regionPhiMargin");
73 
74  // Parameters for the position calculation:
75  posCalculator_ = PositionCalc( ps.getParameter<edm::ParameterSet>("posCalcParameters") );
76 
77  const std::vector<std::string> flagnames =
78  ps.getParameter<std::vector<std::string> >("RecHitFlagToBeExcluded");
79 
80  // exclude recHit flags from seeding
81  std::vector<int> v_chstatus = StringToEnumValue<EcalRecHit::Flags>(flagnames);
82 
83 
84  // Produces a collection of barrel and a collection of endcap clusters
85 
86  produces< reco::BasicClusterCollection >(endcapClusterCollection_);
87  produces< reco::BasicClusterCollection >(barrelClusterCollection_);
88 
89  Multi5x5_p = new Multi5x5ClusterAlgo(barrelSeedThreshold, endcapSeedThreshold, v_chstatus, posCalculator_);
90 
91  /*
92  shapeAlgo_ = ClusterShapeAlgo(providedParameters);//new
93 
94 
95  clustershapecollectionEB_ = ps.getParameter<std::string>("clustershapecollectionEB");
96  clustershapecollectionEE_ = ps.getParameter<std::string>("clustershapecollectionEE");
97 
98  //AssociationMap
99  barrelClusterShapeAssociation_ = ps.getParameter<std::string>("barrelShapeAssociation");
100  endcapClusterShapeAssociation_ = ps.getParameter<std::string>("endcapShapeAssociation");
101 
102  // Produces a collection of barrel and a collection of endcap clusters
103 
104  produces< reco::ClusterShapeCollection>(clustershapecollectionEE_);//new
105  //produces< reco::BasicClusterCollection >(endcapClusterCollection_);
106  produces< reco::ClusterShapeCollection>(clustershapecollectionEB_);//new
107  // produces< reco::BasicClusterCollection >(barrelClusterCollection_);
108  produces< reco::BasicClusterShapeAssociationCollection >(barrelClusterShapeAssociation_);//new
109  produces< reco::BasicClusterShapeAssociationCollection >(endcapClusterShapeAssociation_);//new
110 
111  */
112 
113  nEvt_ = 0;
114 }
T getParameter(std::string const &) const
EgammaHLTMulti5x5ClusterProducer::~EgammaHLTMulti5x5ClusterProducer ( )

Definition at line 117 of file EgammaHLTMulti5x5ClusterProducer.cc.

References Multi5x5_p.

118 {
119  delete Multi5x5_p;
120 }

Member Function Documentation

void EgammaHLTMulti5x5ClusterProducer::clusterizeECALPart ( edm::Event evt,
const edm::EventSetup es,
const std::string &  hitProducer,
const std::string &  hitCollection,
const std::string &  clusterCollection,
const std::vector< EcalEtaPhiRegion > &  regions,
const reco::CaloID::Detectors  detector 
)
private

Definition at line 273 of file EgammaHLTMulti5x5ClusterProducer.cc.

References barrelClusterCollection_, reco::CaloID::DET_ECAL_BARREL, DetId::Ecal, EcalBarrel, EcalEndcap, EcalPreshower, endcapClusterCollection_, edm::EventSetup::get(), getCollection(), Multi5x5ClusterAlgo::makeClusters(), Multi5x5_p, and edm::Event::put().

Referenced by produce().

279 {
280 
281  // get the hit collection from the event:
282  const EcalRecHitCollection *hitCollection_p = getCollection(evt, hitProducer, hitCollection);
283 
284  // get the geometry and topology from the event setup:
285  edm::ESHandle<CaloGeometry> geoHandle;
286  es.get<CaloGeometryRecord>().get(geoHandle);
287 
288  const CaloSubdetectorGeometry *geometry_p;
289  CaloSubdetectorTopology *topology_p;
290 
291  if (detector == reco::CaloID::DET_ECAL_BARREL)
292  {
293  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalBarrel);
294  topology_p = new EcalBarrelTopology(geoHandle);
295  }
296  else
297  {
298  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalEndcap);
299  topology_p = new EcalEndcapTopology(geoHandle);
300  }
301 
302 
303  const CaloSubdetectorGeometry *geometryES_p;
304  geometryES_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalPreshower);
305 
306  // Run the clusterization algorithm:
308  clusters = Multi5x5_p->makeClusters(hitCollection_p, geometry_p, topology_p, geometryES_p, detector, true, regions);
309 
310  // create an auto_ptr to a BasicClusterCollection, copy the barrel clusters into it and put in the Event:
311  std::auto_ptr< reco::BasicClusterCollection > clusters_p(new reco::BasicClusterCollection);
312  clusters_p->assign(clusters.begin(), clusters.end());
314  if (detector == reco::CaloID::DET_ECAL_BARREL)
315  bccHandle = evt.put(clusters_p, barrelClusterCollection_);
316  else
317  bccHandle = evt.put(clusters_p, endcapClusterCollection_);
318 
319  delete topology_p;
320 }
std::vector< reco::BasicCluster > makeClusters(const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry, const CaloSubdetectorTopology *topology_p, const CaloSubdetectorGeometry *geometryES_p, reco::CaloID::Detectors detector, bool regional=false, const std::vector< EcalEtaPhiRegion > &regions=std::vector< EcalEtaPhiRegion >())
const EcalRecHitCollection * getCollection(edm::Event &evt, const std::string &hitProducer_, const std::string &hitCollection_)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
const T & get() const
Definition: EventSetup.h:55
std::vector< BasicCluster > BasicClusterCollection
collection of BasicCluster objects
bool EgammaHLTMulti5x5ClusterProducer::counterExceeded ( ) const
inlineprivate
const EcalRecHitCollection * EgammaHLTMulti5x5ClusterProducer::getCollection ( edm::Event evt,
const std::string &  hitProducer_,
const std::string &  hitCollection_ 
)
private

Definition at line 256 of file EgammaHLTMulti5x5ClusterProducer.cc.

References gather_cfg::cout, edm::Event::getByLabel(), edm::HandleBase::isValid(), and edm::Handle< T >::product().

Referenced by clusterizeECALPart().

259 {
261 
262  evt.getByLabel(hitProducer_, hitCollection_, rhcHandle);
263  if (!(rhcHandle.isValid()))
264  {
265  std::cout << "could not get a handle on the EcalRecHitCollection!" << std::endl;
266  edm::LogError("EgammaHLTMulti5x5ClusterProducerError") << "Error! can't get the product " << hitCollection_.c_str() ;
267  return 0;
268  }
269  return rhcHandle.product();
270 }
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
T const * product() const
Definition: Handle.h:74
tuple cout
Definition: gather_cfg.py:121
void EgammaHLTMulti5x5ClusterProducer::outputValidationInfo ( reco::CaloClusterPtrVector clusterPtrVector)
private
void EgammaHLTMulti5x5ClusterProducer::produce ( edm::Event evt,
const edm::EventSetup es 
)
virtual

Implements edm::EDProducer.

Definition at line 123 of file EgammaHLTMulti5x5ClusterProducer.cc.

References barrelClusterCollection_, barrelHitCollection_, barrelHitProducer_, clusterizeECALPart(), reco::CaloID::DET_ECAL_BARREL, reco::CaloID::DET_ECAL_ENDCAP, doBarrel_, doEndcaps_, doIsolated_, endcapClusterCollection_, endcapHitCollection_, endcapHitProducer_, edm::EventSetup::get(), edm::Event::getByLabel(), l1LowerThr_, l1LowerThrIgnoreIsolation_, l1TagIsolated_, l1TagNonIsolated_, l1UpperThr_, edm::InputTag::label(), nEvt_, regionEtaMargin_, and regionPhiMargin_.

124 {
125  //Get the L1 EM Particle Collection
127  if(doIsolated_)
128  evt.getByLabel(l1TagIsolated_, emIsolColl);
129  //Get the L1 EM Particle Collection
131  evt.getByLabel(l1TagNonIsolated_, emNonIsolColl);
132  // Get the CaloGeometry
133  edm::ESHandle<L1CaloGeometry> l1CaloGeom ;
134  es.get<L1CaloGeometryRecord>().get(l1CaloGeom) ;
135 
136  std::vector<EcalEtaPhiRegion> barrelRegions;
137  std::vector<EcalEtaPhiRegion> endcapRegions;
138 
139  if(doIsolated_) {
140  for( l1extra::L1EmParticleCollection::const_iterator emItr = emIsolColl->begin(); emItr != emIsolColl->end() ;++emItr ){
141 
142  if (emItr->et() > l1LowerThr_ && emItr->et() < l1UpperThr_) {
143 
144  // Access the GCT hardware object corresponding to the L1Extra EM object.
145  int etaIndex = emItr->gctEmCand()->etaIndex() ;
146 
147 
148  int phiIndex = emItr->gctEmCand()->phiIndex() ;
149  // Use the L1CaloGeometry to find the eta, phi bin boundaries.
150  double etaLow = l1CaloGeom->etaBinLowEdge( etaIndex ) ;
151  double etaHigh = l1CaloGeom->etaBinHighEdge( etaIndex ) ;
152  double phiLow = l1CaloGeom->emJetPhiBinLowEdge( phiIndex ) ;
153  double phiHigh = l1CaloGeom->emJetPhiBinHighEdge( phiIndex ) ;
154 
155  //Attention isForward does not work
156  int isforw=0;
157  int isbarl=0;
158  if((float)(etaHigh)>1.479 || (float)(etaLow)<-1.479) isforw=1;
159  if(((float)(etaLow)>-1.479 && (float)(etaLow)<1.479) ||
160  ((float)(etaHigh)>-1.479 && (float)(etaHigh)<1.479)) isbarl=1;
161 
162  //std::cout<<"Multi5x5 etaindex "<<etaIndex<<" low hig : "<<etaLow<<" "<<etaHigh<<" phi low hig" <<phiLow<<" " << phiHigh<<" isforw "<<emItr->gctEmCand()->regionId().isForward()<<" isforwnew" <<isforw<< std::endl;
163 
164  etaLow -= regionEtaMargin_;
165  etaHigh += regionEtaMargin_;
166  phiLow -= regionPhiMargin_;
167  phiHigh += regionPhiMargin_;
168 
169  //if (emItr->gctEmCand()->regionId().isForward()) {
170  if (isforw) {
171  if (etaHigh>-1.479 && etaHigh<1.479) etaHigh=-1.479;
172  if ( etaLow>-1.479 && etaLow<1.479) etaLow=1.479;
173  EcalEtaPhiRegion region(etaLow,etaHigh,phiLow,phiHigh);
174  endcapRegions.push_back(region);
175  }
176  if (isbarl) {
177  if (etaHigh>1.479) etaHigh=1.479;
178  if (etaLow<-1.479) etaLow=-1.479;
179  EcalEtaPhiRegion region(etaLow,etaHigh,phiLow,phiHigh);
180  barrelRegions.push_back(region);
181  }
182  EcalEtaPhiRegion region(etaLow,etaHigh,phiLow,phiHigh);
183 
184  }
185  }
186  }
187 
188 
190  for( l1extra::L1EmParticleCollection::const_iterator emItr = emNonIsolColl->begin(); emItr != emNonIsolColl->end() ;++emItr ){
191 
192  if(doIsolated_&&emItr->et()<l1LowerThrIgnoreIsolation_) continue;
193 
194  if (emItr->et() > l1LowerThr_ && emItr->et() < l1UpperThr_) {
195 
196  // Access the GCT hardware object corresponding to the L1Extra EM object.
197  int etaIndex = emItr->gctEmCand()->etaIndex() ;
198 
199 
200  int phiIndex = emItr->gctEmCand()->phiIndex() ;
201  // Use the L1CaloGeometry to find the eta, phi bin boundaries.
202  double etaLow = l1CaloGeom->etaBinLowEdge( etaIndex ) ;
203  double etaHigh = l1CaloGeom->etaBinHighEdge( etaIndex ) ;
204  double phiLow = l1CaloGeom->emJetPhiBinLowEdge( phiIndex ) ;
205  double phiHigh = l1CaloGeom->emJetPhiBinHighEdge( phiIndex ) ;
206 
207 
208  int isforw=0;
209  int isbarl=0;
210  if((float)(etaHigh)>1.479 || (float)(etaLow)<-1.479) isforw=1;
211  if(((float)(etaLow)>-1.479 && (float)(etaLow)<1.479) ||
212  ((float)(etaHigh)>-1.479 && (float)(etaHigh)<1.479)) isbarl=1;
213 
214  //std::cout<<"Multi5x5 etaindex "<<etaIndex<<" low hig : "<<etaLow<<" "<<etaHigh<<" phi low hig" <<phiLow<<" " << phiHigh<<" isforw "<<emItr->gctEmCand()->regionId().isForward()<<" isforwnew" <<isforw<< std::endl;
215 
216  etaLow -= regionEtaMargin_;
217  etaHigh += regionEtaMargin_;
218  phiLow -= regionPhiMargin_;
219  phiHigh += regionPhiMargin_;
220 
221  //if (emItr->gctEmCand()->regionId().isForward()) {
222  if (isforw) {
223  if (etaHigh>-1.479 && etaHigh<1.479) etaHigh=-1.479;
224  if ( etaLow>-1.479 && etaLow<1.479) etaLow=1.479;
225  EcalEtaPhiRegion region(etaLow,etaHigh,phiLow,phiHigh);
226  endcapRegions.push_back(region);
227  }
228  if (isbarl) {
229  if (etaHigh>1.479) etaHigh=1.479;
230  if (etaLow<-1.479) etaLow=-1.479;
231  EcalEtaPhiRegion region(etaLow,etaHigh,phiLow,phiHigh);
232  barrelRegions.push_back(region);
233  }
234 
235  }
236  }
237  }
238 
239 
240  if (doEndcaps_
241  //&&endcapRegions.size()!=0
242  ) {
243 
245  }
246  if (doBarrel_
247  //&& barrelRegions.size()!=0
248  ) {
250 
251  }
252  nEvt_++;
253 }
void clusterizeECALPart(edm::Event &evt, const edm::EventSetup &es, const std::string &hitProducer, const std::string &hitCollection, const std::string &clusterCollection, const std::vector< EcalEtaPhiRegion > &regions, const reco::CaloID::Detectors detector)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
const T & get() const
Definition: EventSetup.h:55
std::string const & label() const
Definition: InputTag.h:25

Member Data Documentation

std::string EgammaHLTMulti5x5ClusterProducer::barrelClusterCollection_
private
std::string EgammaHLTMulti5x5ClusterProducer::barrelHitCollection_
private

Definition at line 48 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

edm::InputTag EgammaHLTMulti5x5ClusterProducer::barrelHitProducer_
private

Definition at line 46 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

bool EgammaHLTMulti5x5ClusterProducer::doBarrel_
private

Definition at line 42 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

bool EgammaHLTMulti5x5ClusterProducer::doEndcaps_
private

Definition at line 43 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

bool EgammaHLTMulti5x5ClusterProducer::doIsolated_
private

Definition at line 44 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

std::string EgammaHLTMulti5x5ClusterProducer::endcapClusterCollection_
private
std::string EgammaHLTMulti5x5ClusterProducer::endcapHitCollection_
private

Definition at line 49 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

edm::InputTag EgammaHLTMulti5x5ClusterProducer::endcapHitProducer_
private

Definition at line 47 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

double EgammaHLTMulti5x5ClusterProducer::l1LowerThr_
private

Definition at line 64 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

double EgammaHLTMulti5x5ClusterProducer::l1LowerThrIgnoreIsolation_
private

Definition at line 66 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

edm::InputTag EgammaHLTMulti5x5ClusterProducer::l1TagIsolated_
private

Definition at line 62 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

edm::InputTag EgammaHLTMulti5x5ClusterProducer::l1TagNonIsolated_
private

Definition at line 63 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

double EgammaHLTMulti5x5ClusterProducer::l1UpperThr_
private

Definition at line 65 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

Multi5x5ClusterAlgo* EgammaHLTMulti5x5ClusterProducer::Multi5x5_p
private
int EgammaHLTMulti5x5ClusterProducer::nEvt_
private
int EgammaHLTMulti5x5ClusterProducer::nMaxPrintout_
private

Definition at line 38 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by counterExceeded().

PositionCalc EgammaHLTMulti5x5ClusterProducer::posCalculator_
private

Definition at line 71 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer().

double EgammaHLTMulti5x5ClusterProducer::regionEtaMargin_
private

Definition at line 68 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().

double EgammaHLTMulti5x5ClusterProducer::regionPhiMargin_
private

Definition at line 69 of file EgammaHLTMulti5x5ClusterProducer.h.

Referenced by EgammaHLTMulti5x5ClusterProducer(), and produce().