ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoJet.h
Revision: 1.5
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: L1TriggerAnalysis_3_6_1patch4
Changes since 1.4: +6 -28 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisRecoJet_H__
2     #define __L1Analysis_L1AnalysisRecoJet_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 05/03/2010 - A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1RecoJetNtupleProducer - Jim Brooke
9     //-------------------------------------------------------------------------------
10    
11     #include "DataFormats/JetReco/interface/CaloJetCollection.h"
12 georgia 1.3 #include "DataFormats/JetReco/interface/JetID.h"
13 econte 1.5 #include "L1AnalysisRecoJetDataFormat.h"
14 econte 1.1
15     namespace L1Analysis
16     {
17     class L1AnalysisRecoJet
18     {
19     public:
20     L1AnalysisRecoJet();
21     ~L1AnalysisRecoJet();
22    
23 econte 1.5 //void Print(std::ostream &os = std::cout) const;
24 georgia 1.3 void SetCaloJet(const edm::Handle<reco::CaloJetCollection> caloJets, edm::Handle<edm::ValueMap<reco::JetID> > jetsID, unsigned maxJet);
25 econte 1.5 L1AnalysisRecoJetDataFormat * getData() {return &recoJet_;}
26     void Reset() {recoJet_.Reset();}
27 georgia 1.3
28 econte 1.5 private :
29     L1AnalysisRecoJetDataFormat recoJet_;
30 econte 1.1 };
31     }
32     #endif
33    
34