Revision: | 1.1 |
Committed: | Thu Feb 24 07:34:29 2011 UTC (14 years, 2 months ago) by dasu |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | v2 |
Log Message: | Added Majid's changes |
# | User | Rev | Content |
---|---|---|---|
1 | dasu | 1.1 | #ifndef __MYOBJECT_HH__ |
2 | #define __MYOBJECT_HH__ | ||
3 | #include "TROOT.h" | ||
4 | #include "TObject.h" | ||
5 | using namespace std; | ||
6 | #include <vector> | ||
7 | class myobject : public TObject { | ||
8 | public : | ||
9 | myobject(){;} | ||
10 | ~myobject(){;} | ||
11 | |||
12 | float pt,eta,phi,charge,E,px,py,pz; | ||
13 | string name; | ||
14 | |||
15 | |||
16 | ClassDef (myobject,1) | ||
17 | }; | ||
18 | #endif |