]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliRun.h
Possiblity to run the simulation starting from an external root file containing geome...
[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 <TError.h>
15 #include <TSystem.h>
16
17 class TGeometry;
18 class TParticle;
19 class TRandom;
20 class TTree;
21
22 #include "AliRunLoader.h"
23 class AliDisplay;
24 class AliGenEventHeader;
25 class AliGenerator;
26 class AliHeader;
27 class AliLego;
28 class AliLegoGenerator;
29 class AliMC;
30 class AliMagF;
31 class AliStack;
32
33 enum {kKeepBit=1, kDaughtersBit=2, kDoneBit=4};
34
35 class AliRun : public TNamed {
36 public:
37    // Creators - distructors
38    AliRun();
39    AliRun(const char *name, const char *title);
40    AliRun(const AliRun &arun);
41    virtual ~AliRun();
42
43    AliRun& operator = (const AliRun &arun) 
44      {arun.Copy(*this); return (*this);}
45    virtual  void  Build();
46    virtual  void  BuildSimpleGeometry();
47    virtual  void  CleanDetectors();
48    TObjArray     *Detectors() const {return fModules;}
49    TObjArray     *Modules() const {return fModules;}
50    AliDisplay    *Display() const { return fDisplay;}
51    virtual AliMagF *Field() const {return fField;}
52    virtual  void  FinishRun();
53    void           AddModule(AliModule* mod);
54    Int_t          GetEvNumber() const;
55    Int_t          GetRunNumber() const {return fRun;}
56    void           SetRunNumber(Int_t run) {fRun=run;}
57    void           SetEventNrInRun(Int_t event) {fEventNrInRun=event;}
58    Int_t          GetEventNrInRun() const {return fEventNrInRun;}
59    Int_t          GetEventsPerRun() const {return fEventsPerRun;}
60    Int_t          GetNdets() const {return fNdets;}
61    AliModule     *GetModule(const char *name) const;
62    AliDetector   *GetDetector(const char *name) const;
63    Int_t          GetModuleID(const char *name) const;
64    virtual  const char *GetBaseFile() const 
65     {return fBaseFileName.Data();}
66    virtual  Int_t GetEvent(Int_t event);
67    virtual  void  SetEvent(Int_t event) {fEvent=event;}
68    virtual  void  SetConfigFunction(const char * config="Config();");
69    virtual  const char *GetConfigFunction() const 
70     {return fConfigFunction.Data();}
71    TGeometry     *GetGeometry();
72    virtual  void  SetGenEventHeader(AliGenEventHeader* header);
73    AliMC*         GetMCApp() const {return fMCApp;}
74    virtual  void  Hits2Digits(const char *detector=0); 
75    virtual  void  Hits2SDigits(const char *detector=0)   {Tree2Tree("S",detector);}
76    virtual  void  SDigits2Digits(const char *detector=0) {Tree2Tree("D",detector);}
77    virtual  void  Digits2Reco(const char *detector=0)    {Tree2Tree("R",detector);}
78    virtual  void  InitMC(const char *setup="Config.C");
79    virtual  void  Init(const char *setup="Config.C") {InitMC(setup);}
80    Bool_t         IsFolder() const {return kTRUE;}
81    virtual AliLego* Lego() const {return fLego;}
82    Bool_t         IsRootGeometry() const {return fIsRootGeometry;}
83    void           SetRootGeometry(Bool_t flag=kTRUE);
84    const char*    GetGeometryFileName() const {return fGeometryFileName.Data();}
85    void           SetGeometryFromFile(const char *filename) {
86      SetRootGeometry();
87      fGeometryFileName = filename;
88    }
89    void           SetGeometryFromCDB();
90    Bool_t         IsGeomFromCDB() const {return fGeometryFromCDB;}
91    const char*    GetTriggerDescriptor() const {return fTriggerDescriptor.Data();}
92    void           SetTriggerDescriptor(const char *name) {fTriggerDescriptor = name;}
93    virtual  void  ResetDigits();
94    virtual  void  ResetSDigits();
95    virtual  void  ResetPoints();
96    virtual  void  SetBaseFile(const char *filename="galice.root");
97    virtual  void  RunMC(Int_t nevent=1, const char *setup="Config.C");
98    virtual  void  Run(Int_t nevent=1, const char *setup="Config.C") {RunMC(nevent,setup);}
99    virtual  void  RunLego(const char *setup="Config.C",Int_t nc1=60,Float_t c1min=2,Float_t c1max=178,
100                           Int_t nc2=60,Float_t c2min=0,Float_t c2max=360,Float_t rmin=0,
101                           Float_t rmax=430,Float_t zmax=10000, AliLegoGenerator* gener=NULL, Int_t nev = -1);
102    virtual  Bool_t IsLegoRun() const {return (fLego!=0);}
103    virtual  void  RunReco(const char *detector=0, Int_t first = 0, Int_t last = 0);
104    virtual  void  SetDisplay(AliDisplay *display) {fDisplay = display;}
105    virtual  void  SetField(Int_t type=2, Int_t version=1, Float_t scale=1, Float_t maxField=10, const char* filename="$(ALICE_ROOT)/data/field01.dat");
106    virtual  void  SetField(AliMagF* magField);
107    virtual  TDatabasePDG* PDGDB() const {return fPDGDB;}
108    
109    virtual  void Field(const Double_t* x, Double_t* b) const;
110    
111    // Delegations
112    virtual  void  ResetHits();
113    virtual  AliGenerator* Generator() const;
114
115
116
117 // Added by Alberto Colla
118
119    Bool_t         IsFileAccessible(Char_t* name, EAccessMode mode = kFileExists);
120    static   Bool_t   IsFileAccessible(const char* fnam, EAccessMode mode = kFileExists);
121 // Added by Alberto Colla
122
123    //
124    // End of MC Application
125
126    TTree         *TreeE() {return (fRunLoader)?fRunLoader->TreeE():0x0;}
127    TTree         *TreeK() {return (fRunLoader)?fRunLoader->TreeK():0x0;}
128    AliStack      *Stack() {return (fRunLoader)?fRunLoader->Stack():0x0;}
129    AliHeader*     GetHeader() {return (fRunLoader)?fRunLoader->GetHeader():0x0;}
130
131    TTree         *TreeD() const {MayNotUse("TreeD"); return 0x0;}
132    TTree         *TreeS() const {MayNotUse("TreeS"); return 0x0;}
133    TTree         *TreeR() const {MayNotUse("TreeR"); return 0x0;}
134
135    
136    void SetRunLoader(AliRunLoader* rloader);
137    AliRunLoader* GetRunLoader() const {return fRunLoader;}
138 //   void SetEventFolderName(const char* eventfoldername);
139   virtual  void Announce() const;
140    
141   virtual  void  InitLoaders(); //prepares run (i.e. creates getters)
142   static void Deprecated(TObject *obj, const char *method, const char *replace)
143     {// Indicates deprecated method
144       if (obj) ::Warning(Form("%s::%s", obj->ClassName(), method),
145                   "method is depricated\nPlease use: %s", replace);
146       else ::Warning(method, "method is depricated\nPlease use: %s", replace);
147     }
148
149 protected:
150   virtual  void  Tree2Tree(Option_t *option, const char *detector=0);
151   Int_t          fRun;               //! Current run number
152   Int_t          fEvent;             //! Current event number (from 1)
153   Int_t          fEventNrInRun;      //! Current unique event number in run
154   Int_t          fEventsPerRun;      //  Number of events per run
155   TObjArray     *fModules;           //  List of Detectors
156   TGeometry     *fGeometry;          //  Pointer to geometry
157   AliMC         *fMCApp;             //  Pointer to virtual MC Application
158   AliDisplay    *fDisplay;           //! Pointer to event display
159   AliMagF       *fField;             //  Magnetic Field Map
160   Int_t          fNdets;             //  Number of detectors
161   Bool_t         fInitDone;          //! True when initialisation done
162   AliLego       *fLego;              //! Pointer to aliLego object if it exists
163   TDatabasePDG  *fPDGDB;             //  Particle factory object
164   TString        fConfigFunction;    //  Configuration file to be executed
165   TRandom       *fRandom;            //  Pointer to the random number generator
166   TString        fBaseFileName;      //  Name of the base root file
167   Bool_t         fIsRootGeometry;    //! Flag telling if the geometry is loaded from file
168   Bool_t         fGeometryFromCDB;  //! Flag telling if the geometry is to be loaded from OCDB
169   TString        fGeometryFileName;  //! Name of the geometry file
170   TString        fTriggerDescriptor; //  Trigger descriptor identifier
171   AliRunLoader  *fRunLoader;         //!run getter - written as a separate object
172 private:
173   void Copy(TObject &arun) const;
174
175   ClassDef(AliRun,11)      //Supervisor class for all Alice detectors
176 };
177  
178 R__EXTERN  AliRun *gAlice;
179   
180 #endif