]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliRun.h
Adding support for CINT7, CMSH7, CMUL7, CMUU7, CEMC7 triggers
[u/mrichter/AliRoot.git] / STEER / AliRun.h
index 8d2862661804dbcfb8c1cc35d701925cda2facd0..40e77f331199c71ca180245c9c17d36e2c6690f2 100644 (file)
@@ -45,7 +45,6 @@ public:
    virtual  const char *GetBaseFile() const 
     {return fBaseFileName.Data();}
    virtual  Int_t GetEvent(Int_t event);
-   virtual  void  SetEvent(Int_t event) {fEvent=event;}
    virtual  void  SetConfigFunction(const char * config="Config();")
    {fConfigFunction=config;}
    virtual  const char *GetConfigFunction() const 
@@ -57,17 +56,6 @@ public:
    virtual  void  SDigits2Digits(const char *detector=0) {Tree2Tree("D",detector);}
    virtual  void  Digits2Reco(const char *detector=0)    {Tree2Tree("R",detector);}
    Bool_t         IsFolder() const {return kTRUE;}
-   Bool_t         IsRootGeometry() const {return fIsRootGeometry;}
-   void           SetRootGeometry(Bool_t flag=kTRUE);
-   const char*    GetGeometryFileName() const {return fGeometryFileName.Data();}
-   void           SetGeometryFromFile(const char *filename) {
-     SetRootGeometry();
-     fGeometryFileName = filename;
-   }
-   void           SetGeometryFromCDB();
-   Bool_t         IsGeomFromCDB() const {return fGeometryFromCDB;}
-   const char*    GetTriggerDescriptor() const {return fTriggerDescriptor.Data();}
-   void           SetTriggerDescriptor(const char *name) {fTriggerDescriptor = name;}
    virtual  void  SetBaseFile(const char *filename="galice.root");
    //
    // End of MC Application
@@ -80,24 +68,18 @@ public:
 
 protected:
   virtual  void  Tree2Tree(Option_t *option, const char *detector=0);
-  Int_t          fEvent;             //! Current event number (from 1)
   Int_t          fEventNrInRun;      //! Current unique event number in run
   TObjArray     *fModules;           //  List of Detectors
   AliMC         *fMCApp;             //  Pointer to virtual MC Application
   Int_t          fNdets;             //  Number of detectors
   TString        fConfigFunction;    //  Configuration file to be executed
-  TRandom       *fRandom;            //  Pointer to the random number generator
   TString        fBaseFileName;      //  Name of the base root file
-  Bool_t         fIsRootGeometry;    //! Flag telling if the geometry is loaded from file
-  Bool_t         fGeometryFromCDB;   //! Flag telling if the geometry is to be loaded from OCDB
-  TString        fGeometryFileName;  //! Name of the geometry file
-  TString        fTriggerDescriptor; //  Trigger descriptor identifier
-  AliRunLoader  *fRunLoader;         //!run getter - written as a separate object
+  AliRunLoader  *fRunLoader;         //! run getter - written as a separate object
 private:
   AliRun(const AliRun&); // Not implemented
   AliRun& operator = (const AliRun&); // Not implemented
 
-  ClassDef(AliRun,13)      //Supervisor class for all Alice detectors
+  ClassDef(AliRun,15)      //Supervisor class for all Alice detectors
 };
  
 R__EXTERN  AliRun *gAlice;