ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/EJetMet_CU/ProdTutorial/CUcollections/interface/CUtrigger.h
Revision: 1.2
Committed: Tue Sep 28 15:41:11 2010 UTC (14 years, 7 months ago) by puigh
Content type: text/plain
Branch: MAIN
CVS Tags: V01-23, V01-22, V01-21, V01-20, V01-19, V01-18, V01-17, HEAD
Changes since 1.1: +3 -3 lines
Error occurred while calculating annotation data.
Log Message:
add prescale for HLT

File Contents

# Content
1 #ifndef ProdTutorial_CUtrigger_h
2 #define ProdTutorial_CUtrigger_h
3
4 #include <vector>
5 #include <string>
6
7 // a simple class
8 struct CUtrigger
9 {
10 explicit CUtrigger(int c, std::string n):pass(c),prescale(c),name(n) { }
11 CUtrigger():pass(-99),prescale(-99),name("empty") { }
12 int pass,prescale;
13 std::string name;
14 };
15
16 // this is our new product, it is simply a
17 // collection of CUtrigger held in an std::vector
18 typedef std::vector<CUtrigger> CUtriggerCollection;
19
20 #endif