]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliEventTag.h
Base class (AliMisaligner); each detector will provide its derived class,
[u/mrichter/AliRoot.git] / STEER / AliEventTag.h
index 60c7c0a7b191c44766c1ff750b50b4898b5285e5..2c756bd6bb5d3f5d0d4ab0bb096798a15b39dbb7 100644 (file)
@@ -33,6 +33,7 @@ class AliEventTag : public TObject {
   void SetTURL(TString Pid) {fturl = Pid;}
   void SetSize(Long64_t i) {fsize = i;}
   void SetNumOfParticipants(Int_t P) {fNumberOfParticipants = P;}
+  void SetNumOfParticipants2(Int_t P2) {fNumberOfParticipants = P2;}
   void SetImpactParameter(Float_t Pimpact) {fImpactParameter = Pimpact;}
   void SetVertexX(Float_t Pvx) {fPrimaryVertexX = Pvx;}
   void SetVertexY(Float_t Pvy) {fPrimaryVertexY = Pvy;}
@@ -73,6 +74,7 @@ class AliEventTag : public TObject {
   void SetNumOfElectronsAbove3GeV(Int_t i) {fNumberOfElectronsAbove3GeV = i;}
   void SetNumOfElectronsAbove10GeV(Int_t i) {fNumberOfElectronsAbove10GeV = i;}
   void SetNumOfElectrons(Int_t Ptr) {fNumberOfElectrons = Ptr;}
+  void SetNumOfFWMuons(Int_t Ptr) {fNumberOfFWMuons = Ptr;}
   void SetNumOfMuons(Int_t Ptr) {fNumberOfMuons = Ptr;}
   void SetNumOfPions(Int_t Ptr) {fNumberOfPions = Ptr;}
   void SetNumOfKaons(Int_t Ptr) {fNumberOfKaons = Ptr;}
@@ -99,6 +101,7 @@ class AliEventTag : public TObject {
   const char *GetTURL() const {return fturl.Data();}
   Long64_t    GetSize() const {return fsize;}
   Int_t       GetNumOfParticipants() const {return fNumberOfParticipants;}
+  Int_t       GetNumOfParticipants2() const {return fNumberOfParticipants2;}
   Float_t     GetImpactParameter() const {return fImpactParameter;}
   Float_t     GetVertexX() const {return fPrimaryVertexX;}
   Float_t     GetVertexY() const {return fPrimaryVertexY;}
@@ -138,6 +141,7 @@ class AliEventTag : public TObject {
   Int_t       GetNumOfElectronsAbove3GeV() const {return fNumberOfElectronsAbove3GeV;}
   Int_t       GetNumOfElectronsAbove10GeV() const {return fNumberOfElectronsAbove10GeV;}
   Int_t       GetNumOfElectrons() const {return fNumberOfElectrons;}
+  Int_t       GetNumOfFWMuons() const {return fNumberOfFWMuons;}
   Int_t       GetNumOfMuons() const {return fNumberOfMuons;}
   Int_t       GetNumOfPions() const {return fNumberOfPions;}
   Int_t       GetNumOfKaons() const {return fNumberOfKaons;}
@@ -164,7 +168,8 @@ class AliEventTag : public TObject {
   Long64_t  fsize;                          //the size of the file
   TString   fmd5;                           //another file identifier
   TString   fturl;                          //the file's url
-  Int_t     fNumberOfParticipants;         //Number of participants
+  Int_t     fNumberOfParticipants;         //Number of participants - side C
+  Int_t     fNumberOfParticipants2;                //Number of participants - side A
   Float_t   fImpactParameter;              //The impact parameter
   Int_t     fPrimaryVertexFlag;                    //Primary vertex flag: 0->not found, 1->found
   Float_t   fPrimaryVertexX;               //Primary vertex - X coordinate
@@ -204,6 +209,7 @@ class AliEventTag : public TObject {
   Int_t     fNumberOfElectronsAbove3GeV;    //Number of electrons above 3 GeV/c
   Int_t     fNumberOfElectronsAbove10GeV;   //Number of electrons above 10 GeV/c
   Int_t     fNumberOfElectrons;                    //Number of electrons
+  Int_t     fNumberOfFWMuons;              //Number of forward muons
   Int_t     fNumberOfMuons;                //Number of muons
   Int_t     fNumberOfPions;                //Number of pions
   Int_t     fNumberOfKaons;                //Number of kaons
@@ -222,7 +228,7 @@ class AliEventTag : public TObject {
   Float_t   fEventPlaneAngle;              //event plane info
   Float_t   fHBTRadii;                      //HBT info
   
-  ClassDef(AliEventTag,9)  //(ClassName, ClassVersion)
+  ClassDef(AliEventTag,10)  //(ClassName, ClassVersion)
     };
 //___________________________________________________________________________