ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/ElectronAnalyzer.h
Revision: 1.7
Committed: Fri Sep 18 14:14:20 2009 UTC (15 years, 7 months ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: all_3_3_2_01, all_3_2_5_02, all_3_2_5_01, HEAD
Changes since 1.6: +1 -0 lines
Log Message:
Update for 3.2.X

File Contents

# User Rev Content
1 lethuill 1.1 #ifndef ElectronAnalyzer_h
2     #define ElectronAnalyzer_h
3    
4 lethuill 1.6 #include "DataFormats/Common/interface/ValueMap.h"
5 lethuill 1.1 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
6     #include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
7 lethuill 1.2 #include "DataFormats/PatCandidates/interface/Electron.h"
8     #include "DataFormats/EgammaReco/interface/BasicCluster.h"
9 lethuill 1.7 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
10 lethuill 1.2 #include "DataFormats/RecoCandidate/interface/IsoDeposit.h"
11     #include "RecoEcal/EgammaCoreTools/interface/EcalClusterLazyTools.h"
12 lethuill 1.1
13 lethuill 1.5 #include "../interface/LeptonAnalyzer.h"
14 lethuill 1.2 #include "../interface/TRootElectron.h"
15 lethuill 1.1
16     #include "TClonesArray.h"
17    
18    
19 lethuill 1.5 class ElectronAnalyzer : public LeptonAnalyzer
20     {
21    
22     public:
23     ElectronAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
24     ~ElectronAnalyzer();
25     bool process(const edm::Event& iEvent, TRootBeamSpot* rootBeamSpot, TClonesArray* rootElectrons, EcalClusterLazyTools* lazyTools);
26    
27     private:
28     bool useMC_;
29     edm::InputTag electronProducer_;
30 lethuill 1.1
31     };
32    
33     #endif