AliPhysics  2b88e80 (2b88e80)
AliAODSimpleHeader.C
Go to the documentation of this file.
1 
11 #ifndef ALIAODSIMPLEHEADER_H
12 #define ALIAODSIMPLEHEADER_H
13 #include <TVector3.h>
14 
21 {
22 public:
27  : TObject(),
28  fTriggers (0),
29  fCent (-1),
30  fNTracklets (-1),
31  fCentOld (-1),
32  fRecIP (-1000, -1000, -1000),
33  fSimIP (-1000, -1000, -1000),
34  fProjectileNpart (-1),
35  fTargetNpart (-1),
36  fNcoll (-1),
37  fImpactParameter (-1),
38  fReactionPlane (-1),
39  fProjectileNsd (-1),
40  fTargetNsd (-1),
41  fNdd (-1) /*,
42  fNcluster0 (-1),
43  fNcluster1 (-1) */
44  {}
45  virtual ~AliAODSimpleHeader() {}
51  void Clear(Option_t* option="")
52  {
53  fTriggers = 0;
54  fCent = -1;
55  fNTracklets = -1;
56  fCentOld = -1;
57  fRecIP.SetXYZ(-1000, -1000, -1000);
58  fSimIP.SetXYZ(-1000, -1000, -1000);
59  fProjectileNpart = -1;
60  fTargetNpart = -1;
61  fNcoll = -1;
62  fImpactParameter = -1;
63  fReactionPlane = -1;
64  fProjectileNsd = -1;
65  fTargetNsd = -1;
66  fNdd = -1;
67  // fNcluster0 = -1;
68  // fNcluster1 = -1;
69  }
83  TVector3 fRecIP;
85  TVector3 fSimIP;
103  // Int_t fNcluster0;
105  // Int_t fNcluster1;
106  /* @} */
107 
108  ClassDef(AliAODSimpleHeader,1); // Simple header for AODs
109 };
110 
111 
112 
113 #endif
114 //
115 // EOF
116 //
double Double_t
Definition: External.C:58
int Int_t
Definition: External.C:63
unsigned int UInt_t
Definition: External.C:33
const char Option_t
Definition: External.C:48
void Clear(Option_t *option="")