ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/devildog/SWonAnalysis3/Thesis/src/TCTrig.h
Revision: 1.3
Committed: Wed Jun 15 22:12:56 2011 UTC (13 years, 10 months ago) by devildog
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -1 lines
Log Message:
Removed custom copy constructor

File Contents

# User Rev Content
1 devildog 1.1 /*
2     * File: TCTrig.h
3     * Author: S. Won
4     */
5    
6     #ifndef _TCTrig_H
7     #define _TCTrig_H
8    
9     #include "TObject.h"
10     #include <vector>
11     #include <string>
12     #include <utility>
13    
14     class TCTrig : public TObject {
15     private:
16     std::vector< std::pair <std::string, int > > triggers;
17 devildog 1.2 // std::vector< std::pair <std::string, int > >::iterator wade_it;
18 devildog 1.1
19     public:
20     TCTrig();
21     virtual ~TCTrig();
22    
23     void dumpTriggers();
24     void addTrigger( std::string name, int scale);
25     void clearTriggers();
26     bool checkTrigger( std::string name);
27    
28     ClassDef(TCTrig, 1);
29    
30     };
31    
32     #endif