ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/PollackPrograms/src/TCTriggerObject.h
(Generate patch)

Comparing UserCode/PollackPrograms/src/TCTriggerObject.h (file contents):
Revision 1.1 by bpollack, Tue Jul 24 20:24:58 2012 UTC vs.
Revision 1.2 by bpollack, Wed Feb 20 21:39:44 2013 UTC

# Line 3 | Line 3
3  
4   #include "TObject.h"
5   #include "TLorentzVector.h"
6 + #include <string>
7 +
8 + using namespace std;
9  
10   class TCTriggerObject : public TLorentzVector {
11      private:
12 <        int id;
12 >        int _id;
13 >        string _HLTName;
14 >        string _moduleName;
15  
16      public:
17          TCTriggerObject();
18          virtual ~TCTriggerObject();
19  
20 <        void setId(int i);
21 <
22 <        int getId();
20 >        void SetId(int i);
21 >        void SetHLTName(string s);
22 >        void SetModuleName(string s);
23 >        int GetId();
24 >        string GetHLTName();
25 >        string GetModuleName();
26  
27          ClassDef(TCTriggerObject, 1);
28   };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines