]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliRunLoader.h
The total mult in V0 became float number.
[u/mrichter/AliRoot.git] / STEER / AliRunLoader.h
index 0cbe076d5a73ba5d08b9239e4caf1c830eeb16a4..fce21170414d8da18cefaf7f8dfb2658033c843a 100644 (file)
@@ -155,7 +155,8 @@ class AliRunLoader: public TNamed
     void        SetDirName(TString& dirname);
     Int_t       GetFileOffset() const;
     void        SetNumberOfEventsPerFile(Int_t nevpf){fNEventsPerFile = nevpf;}
-    
+    void        SetNumberOfEventsPerRun(Int_t nevpr) {fNEventsPerRun = nevpr;}
+    Int_t       GetNumberOfEventsPerRun()            {return fNEventsPerRun;}
     void        SetDigitsFileNameSuffix(const TString& suffix);//adds the suffix before ".root", 
                                                                //e.g. TPC.Digits.root -> TPC.DigitsMerged.root
                                                                //made on Jiri Chudoba demand
@@ -229,7 +230,8 @@ protected:
     AliDataLoader     *fTrackRefsDataLoader;//track reference data loader
     
     Int_t              fNEventsPerFile;  //defines number of events stored per one file
-    TString            fUnixDirName;    //! name of unix path to directory that contains event
+    Int_t              fNEventsPerRun;   //defines number of event per run
+    TString            fUnixDirName;     //! name of unix path to directory that contains event
     static const TString   fgkDefaultKineFileName;//default file name with kinamatics
     static const TString   fgkDefaultTrackRefsFileName;//default file name with kinamatics
     static const TString   fgkDefaultTriggerFileName;//default file name with trigger
@@ -256,7 +258,7 @@ protected:
     static const TString   fgkKineBranchName;         //default name of the branch with kinematics
     static const TString   fgkGAliceName;             //default name for gAlice file    
     
-    ClassDef(AliRunLoader,2)
+    ClassDef(AliRunLoader,3)
 };
 
 #endif