ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/SuperClusterAnalyzer.h
Revision: 1.5
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.4: +3 -2 lines
Log Message:
Update for 3.2.X

File Contents

# User Rev Content
1 mlethuil 1.1 #ifndef SuperClusterAnalyzer_h
2     #define SuperClusterAnalyzer_h
3    
4     // system include files
5     #include <memory>
6     #include <string>
7     #include <iostream>
8    
9     // user include files
10     #include "FWCore/Framework/interface/Event.h"
11     #include "FWCore/ParameterSet/interface/ParameterSet.h"
12     #include "FWCore/Framework/interface/ESHandle.h"
13    
14 lethuill 1.5 #include "DataFormats/CaloRecHit/interface/CaloCluster.h"
15     #include "DataFormats/CaloRecHit/interface/CaloClusterFwd.h"
16 mlethuil 1.1 #include "DataFormats/EgammaReco/interface/ClusterShape.h"
17     #include "DataFormats/EgammaReco/interface/SuperCluster.h"
18 lethuill 1.5 #include "DataFormats/EgammaReco/interface/SuperClusterFwd.h"
19 mlethuil 1.1
20 lethuill 1.2 #include "../interface/TRootEvent.h"
21     #include "../interface/TRootSuperCluster.h"
22 mlethuil 1.1
23     #include "TClonesArray.h"
24    
25    
26 lethuill 1.4 class SuperClusterAnalyzer
27     {
28    
29     public:
30     SuperClusterAnalyzer(const edm::ParameterSet& producersNames, int verbosity);
31     ~SuperClusterAnalyzer();
32     void setVerbosity(int verbosity) {verbosity_ = verbosity; };
33     bool process(const edm::Event& iEvent, TRootEvent* rootEvent, TClonesArray* rootSuperClusters, const string moduleLabel, const string instanceName, const int clusterType);
34    
35     private:
36     int verbosity_;
37     int iClus_;
38     std::string dataType_ ;
39     bool allowMissingCollection_;
40     bool patEncapsulation_;
41 mlethuil 1.1
42     };
43    
44     #endif