ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisDTTF.h
Revision: 1.3
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.2: +7 -42 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisDTTF_H__
2 #define __L1Analysis_L1AnalysisDTTF_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 06/01/2010 - A.C. Le Bihan
6 //
7 //
8 // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9 //-------------------------------------------------------------------------------
10
11 #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhContainer.h"
12 #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambThContainer.h"
13 #include "DataFormats/L1DTTrackFinder/interface/L1MuDTTrackContainer.h"
14 #include "DataFormats/Common/interface/Handle.h"
15
16 #include <vector>
17 #include "TMatrixD.h"
18 #include "L1AnalysisDTTFDataFormat.h"
19
20 namespace L1Analysis
21 {
22 class L1AnalysisDTTF
23 {
24 public:
25 L1AnalysisDTTF();
26 ~L1AnalysisDTTF();
27
28 void SetDTPH(const edm::Handle<L1MuDTChambPhContainer > L1MuDTChambPhContainer, unsigned int maxDTPH);
29 void SetDTTH(const edm::Handle<L1MuDTChambThContainer > L1MuDTChambThContainer, unsigned int maxDTTH);
30 void SetDTTR(const edm::Handle<L1MuDTTrackContainer > L1MuDTTrackContainer, unsigned int maxDTTR);
31 void Reset() {dttf_.Reset();}
32 L1AnalysisDTTFDataFormat * getData() {return &dttf_;}
33
34 private :
35 L1AnalysisDTTFDataFormat dttf_;
36 };
37 }
38 #endif
39
40