]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliRun.h
Bug fix
[u/mrichter/AliRoot.git] / STEER / AliRun.h
1 #ifndef ALIRUN_H
2 #define ALIRUN_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //
9 // General configuration class for Simulation and Reconstruction
10 // Basic driver for AliRoot runs
11 // Containing pointers to data elements for AliRoot
12 //
13
14 #include <TSystem.h>
15
16 class TRandom;
17
18 #include "AliRunLoader.h"
19 class AliGenEventHeader;
20 class AliGenerator;
21 class AliHeader;
22 class AliMC;
23 class AliMagF;
24 class AliStack;
25
26
27 class AliRun : public TNamed {
28
29 public:
30    // Creators - distructors
31    AliRun();
32    AliRun(const char *name, const char *title);
33    virtual ~AliRun();
34
35    TObjArray     *Detectors() const {return fModules;}
36    TObjArray     *Modules() const {return fModules;}
37    void           AddModule(AliModule* mod);
38    Int_t          GetEvNumber() const;
39    void           SetEventNrInRun(Int_t event) {fEventNrInRun=event;}
40    Int_t          GetEventNrInRun() const {return fEventNrInRun;}
41    Int_t          GetNdets() const {return fNdets;}
42    AliModule     *GetModule(const char *name) const;
43    AliDetector   *GetDetector(const char *name) const;
44    Int_t          GetModuleID(const char *name) const;
45    virtual  const char *GetBaseFile() const 
46     {return fBaseFileName.Data();}
47    virtual  Int_t GetEvent(Int_t event);
48    virtual  void  SetConfigFunction(const char * config="Config();")
49    {fConfigFunction=config;}
50    virtual  const char *GetConfigFunction() const 
51    {return fConfigFunction.Data();}
52    virtual  void  SetGenEventHeader(AliGenEventHeader* header);
53    AliMC*         GetMCApp() const {return fMCApp;}
54    virtual  void  Hits2Digits(const char *detector=0); 
55    virtual  void  Hits2SDigits(const char *detector=0)   {Tree2Tree("S",detector);}
56    virtual  void  SDigits2Digits(const char *detector=0) {Tree2Tree("D",detector);}
57    virtual  void  Digits2Reco(const char *detector=0)    {Tree2Tree("R",detector);}
58    Bool_t         IsFolder() const {return kTRUE;}
59    Bool_t         IsRootGeometry() const {return fIsRootGeometry;}
60    void           SetRootGeometry(Bool_t flag=kTRUE);
61    const char*    GetGeometryFileName() const {return fGeometryFileName.Data();}
62    void           SetGeometryFromFile(const char *filename) {
63      SetRootGeometry();
64      fGeometryFileName = filename;
65    }
66    void           SetGeometryFromCDB();
67    Bool_t         IsGeomFromCDB() const {return fGeometryFromCDB;}
68    const char*    GetTriggerDescriptor() const {return fTriggerDescriptor.Data();}
69    void           SetTriggerDescriptor(const char *name) {fTriggerDescriptor = name;}
70    virtual  void  SetBaseFile(const char *filename="galice.root");
71    //
72    // End of MC Application
73
74    void SetRunLoader(AliRunLoader* rloader);
75
76   virtual  void Announce() const;
77    
78   virtual  void  InitLoaders(); //prepares run (i.e. creates getters)
79
80 protected:
81   virtual  void  Tree2Tree(Option_t *option, const char *detector=0);
82   Int_t          fEventNrInRun;      //! Current unique event number in run
83   TObjArray     *fModules;           //  List of Detectors
84   AliMC         *fMCApp;             //  Pointer to virtual MC Application
85   Int_t          fNdets;             //  Number of detectors
86   TString        fConfigFunction;    //  Configuration file to be executed
87   TRandom       *fRandom;            //  Pointer to the random number generator
88   TString        fBaseFileName;      //  Name of the base root file
89   Bool_t         fIsRootGeometry;    //! Flag telling if the geometry is loaded from file
90   Bool_t         fGeometryFromCDB;   //! Flag telling if the geometry is to be loaded from OCDB
91   TString        fGeometryFileName;  //! Name of the geometry file
92   TString        fTriggerDescriptor; //  Trigger descriptor identifier
93   AliRunLoader  *fRunLoader;         //!run getter - written as a separate object
94 private:
95   AliRun(const AliRun&); // Not implemented
96   AliRun& operator = (const AliRun&); // Not implemented
97
98   ClassDef(AliRun,13)      //Supervisor class for all Alice detectors
99 };
100  
101 R__EXTERN  AliRun *gAlice;
102   
103 #endif