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
Error occurred while calculating annotation data.
Log Message:
Update for 3.2.X

File Contents

# Content
1 #ifndef ElectronAnalyzer_h
2 #define ElectronAnalyzer_h
3
4 #include "DataFormats/Common/interface/ValueMap.h"
5 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
6 #include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
7 #include "DataFormats/PatCandidates/interface/Electron.h"
8 #include "DataFormats/EgammaReco/interface/BasicCluster.h"
9 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
10 #include "DataFormats/RecoCandidate/interface/IsoDeposit.h"
11 #include "RecoEcal/EgammaCoreTools/interface/EcalClusterLazyTools.h"
12
13 #include "../interface/LeptonAnalyzer.h"
14 #include "../interface/TRootElectron.h"
15
16 #include "TClonesArray.h"
17
18
19 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
31 };
32
33 #endif