ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/System8/s8/S8Tree/interface/S8TriggerCenter.h
Revision: 1.2
Committed: Tue May 24 16:15:11 2011 UTC (13 years, 11 months ago) by samvel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Remove the S8Tree code

File Contents

# Content
1 /**
2 * TriggerCenter
3 * s8
4 *
5 * Created by Samvel Khalatian on Nov 5, 2010
6 * Copyright 2010, All rights reserved
7 */
8
9 #ifndef S8_TRIGGERCENTER
10 #define S8_TRIGGERCENTER
11
12 #include <map>
13
14 #include <TObject.h>
15 #include <Rtypes.h>
16
17 namespace s8
18 {
19 class TriggerCenter: public TObject
20 {
21 public:
22 typedef unsigned int Hash;
23
24 typedef std::map<Hash, std::string> TriggerMap;
25
26 TriggerCenter();
27
28 TriggerMap &triggers();
29 const TriggerMap &triggers() const;
30
31 void merge(const TriggerCenter &);
32
33 private:
34 TriggerMap _triggers;
35
36 ClassDef(TriggerCenter, 1);
37 };
38 }
39
40 #endif