ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/ClusterAnalyzer.h
Revision: 1.3
Committed: Mon Dec 1 15:58:04 2008 UTC (16 years, 5 months ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: pat_2_2_5_01, pat_2_1_12_02, pat_2_1_12_01
Changes since 1.2: +2 -2 lines
Log Message:
Proto-version for use with different data formats (RECO/AOD/PAT/PAT+AOD)
Replace the absolute path /UserCode/Morgan with a relative one

File Contents

# User Rev Content
1 mlethuil 1.1 #ifndef ClusterAnalyzer_h
2     #define ClusterAnalyzer_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/Frameworkfwd.h"
11     #include "FWCore/Framework/interface/EDAnalyzer.h"
12     #include "FWCore/Framework/interface/Event.h"
13     #include "FWCore/Framework/interface/MakerMacros.h"
14     #include "FWCore/ParameterSet/interface/ParameterSet.h"
15     #include "FWCore/Framework/interface/ESHandle.h"
16    
17     #include "DataFormats/EgammaReco/interface/BasicCluster.h"
18 lethuill 1.2 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
19     #include "RecoEcal/EgammaCoreTools/interface/EcalClusterLazyTools.h"
20 mlethuil 1.1
21 lethuill 1.3 #include "../interface/TRootEvent.h"
22     #include "../interface/TRootCluster.h"
23 mlethuil 1.1
24     #include "TClonesArray.h"
25    
26    
27     class ClusterAnalyzer{
28    
29     public:
30     ClusterAnalyzer();
31     ~ClusterAnalyzer();
32     void SetVerbosity(int idebug) {verbosity = idebug; };
33 lethuill 1.2 void Process(const edm::Event& iEvent, TRootEvent* rootEvent, EcalClusterLazyTools& lazyTools, TClonesArray* rootClusters, const string moduleLabel, const string instanceName, const int clusterType);
34 mlethuil 1.1
35     private:
36     int verbosity;
37     int iClus;
38    
39     };
40    
41     #endif