CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgammaHLTEcalIsolation.h
Go to the documentation of this file.
1 #ifndef EgammaHLTAlgos_EgammaHLTEcalIsolation_h
2 #define EgammaHLTAlgos_EgammaHLTEcalIsolation_h
3 // -*- C++ -*-
4 //
5 // Package: EgammaHLTAlgos
6 // Class : EgammaHLTEcalIsolation
7 //
13 //
14 // Original Author: Monica Vazquez Acosta
15 // Created: Tue Jun 13 12:18:22 CEST 2006
16 // $Id: EgammaHLTEcalIsolation.h,v 1.3 2008/05/12 08:55:45 ghezzi Exp $
17 //
21 
23 
25 
26 
28 {
29 
30  public:
31 
32  //EgammaHLTEcalIsolation(float egEcalIso_Photon_EtMin = 0., float egEcalIso_Photon_ConeSize = 0.3) :
33  EgammaHLTEcalIsolation(double egEcalIso_EtMin, double egEcalIso_ConeSize, int SC_algo_type) :
34  etMin(egEcalIso_EtMin), conesize(egEcalIso_ConeSize), algoType_(SC_algo_type) {
35  /*
36  std::cout << "EgammaHLTEcalIsolation instance:"
37  << " ptMin=" << etMin
38  << " conesize=" << conesize
39  << std::endl;
40  */
41 
42  }
43 
44  float isolPtSum(const reco::RecoCandidate *recocandidate,
45  const std::vector<const reco::SuperCluster*> sclusters,
46  const std::vector<const reco::BasicCluster*> bclusters);
47 
49  float getetMin() { return etMin; }
51  float getConeSize() { return conesize; }
52 
53  private:
54 
55  // ---------- member data --------------------------------
56 
57  // Parameters of isolation cone geometry.
58  // Photon case
59  double etMin;
60  double conesize;
61  int algoType_;
62 
63 };
64 
65 
66 #endif
float getetMin()
Get Et cut for ecal hits.
float getConeSize()
Get isolation cone size.
float isolPtSum(const reco::RecoCandidate *recocandidate, const std::vector< const reco::SuperCluster * > sclusters, const std::vector< const reco::BasicCluster * > bclusters)
EgammaHLTEcalIsolation(double egEcalIso_EtMin, double egEcalIso_ConeSize, int SC_algo_type)