ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoMuon.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: V01-01-00, jimb4Jan2013, V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4, HEAD
Changes since 1.4: +6 -120 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisRecoMuon_H__
2     #define __L1Analysis_L1AnalysisRecoMuon_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 05/02/2010 - A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1RecoMuonProducer - Luigi Guiducci
9     //-------------------------------------------------------------------------------
10    
11     #include "FWCore/Framework/interface/Event.h"
12 econte 1.5 #include "L1AnalysisRecoMuonDataFormat.h"
13 econte 1.1
14     namespace L1Analysis
15     {
16     class L1AnalysisRecoMuon
17     {
18     public:
19     L1AnalysisRecoMuon();
20     ~L1AnalysisRecoMuon();
21    
22 econte 1.5 void Reset() {recoMuon_.Reset();}
23     //void Print(std::ostream &os = std::cout) const;
24 econte 1.1 void Set();
25 econte 1.5 L1AnalysisRecoMuonDataFormat * getData() {return &recoMuon_;}
26 econte 1.2
27 econte 1.5 private :
28     L1AnalysisRecoMuonDataFormat recoMuon_;
29 econte 1.1 };
30     }
31     #endif
32    
33    
34 econte 1.2