]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliRun.h
fixed bug in AliSTARTTrigger
[u/mrichter/AliRoot.git] / STEER / AliRun.h
CommitLineData
aee8290b 1#ifndef ALIRUN_H
2#define ALIRUN_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
e191bb57 8//
2057aecb 9// General configuration class for Simulation and Reconstruction
10// Basic driver for AliRoot runs
11// Containing pointers to data elements for AliRoot
e191bb57 12//
13
b8c3b0cc 14#include <TError.h>
4d81e5e7 15#include <TSystem.h>
116cbefd 16
e2afb3b6 17class TGeometry;
e2afb3b6 18class TParticle;
19class TRandom;
20class TTree;
1578254f 21
88cb7938 22#include "AliRunLoader.h"
94de3818 23class AliDisplay;
e2afb3b6 24class AliGenEventHeader;
65fb704d 25class AliGenerator;
e2afb3b6 26class AliHeader;
27class AliLego;
28class AliLegoGenerator;
5d12ce38 29class AliMC;
e2afb3b6 30class AliMagF;
9e1a0ddb 31class AliStack;
88cb7938 32
aee8290b 33enum {kKeepBit=1, kDaughtersBit=2, kDoneBit=4};
1578254f 34
5d12ce38 35class AliRun : public TNamed {
fe4da5cc 36public:
37 // Creators - distructors
38 AliRun();
39 AliRun(const char *name, const char *title);
e2afb3b6 40 AliRun(const AliRun &arun);
fe4da5cc 41 virtual ~AliRun();
42
e2afb3b6 43 AliRun& operator = (const AliRun &arun)
44 {arun.Copy(*this); return (*this);}
fe4da5cc 45 virtual void Build();
46 virtual void BuildSimpleGeometry();
47 virtual void CleanDetectors();
8494b010 48 TObjArray *Detectors() const {return fModules;}
49 TObjArray *Modules() const {return fModules;}
37d06d5b 50 AliDisplay *Display() const { return fDisplay;}
fe4da5cc 51 virtual AliMagF *Field() const {return fField;}
fe4da5cc 52 virtual void FinishRun();
88cb7938 53 void AddModule(AliModule* mod);
54 Int_t GetEvNumber() const;
fe4da5cc 55 Int_t GetRunNumber() const {return fRun;}
8494b010 56 void SetRunNumber(Int_t run) {fRun=run;}
eef4b160 57 void SetEventNrInRun(Int_t event) {fEventNrInRun=event;}
58 Int_t GetEventNrInRun() const {return fEventNrInRun;}
6df200c3 59 Int_t GetEventsPerRun() const {return fEventsPerRun;}
5d12ce38 60 Int_t GetNdets() const {return fNdets;}
94de3818 61 AliModule *GetModule(const char *name) const;
62 AliDetector *GetDetector(const char *name) const;
63 Int_t GetModuleID(const char *name) const;
39de14fb 64 virtual const char *GetBaseFile() const
65 {return fBaseFileName.Data();}
fe4da5cc 66 virtual Int_t GetEvent(Int_t event);
45189757 67 virtual void SetEvent(Int_t event) {fEvent=event;}
94de3818 68 virtual void SetConfigFunction(const char * config="Config();");
45189757 69 virtual const char *GetConfigFunction() const
70 {return fConfigFunction.Data();}
fe4da5cc 71 TGeometry *GetGeometry();
42f33748 72 virtual void SetGenEventHeader(AliGenEventHeader* header);
5d12ce38 73 AliMC* GetMCApp() const {return fMCApp;}
d47c658f 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);}
875c717b 78 virtual void InitMC(const char *setup="Config.C");
79 virtual void Init(const char *setup="Config.C") {InitMC(setup);}
b21a3d1a 80 Bool_t IsFolder() const {return kTRUE;}
838edcaf 81 virtual AliLego* Lego() const {return fLego;}
4a9de4af 82 Bool_t IsRootGeometry() const {return fIsRootGeometry;}
83 void SetRootGeometry(Bool_t flag=kTRUE);
84 const char* GetGeometryFileName() const {return fGeometryFileName.Data();}
85 void SetGeometryFileName(const char *name) {fGeometryFileName = name;}
fe4da5cc 86 virtual void ResetDigits();
2ab0c725 87 virtual void ResetSDigits();
fe4da5cc 88 virtual void ResetPoints();
e2afb3b6 89 virtual void SetBaseFile(const char *filename="galice.root");
875c717b 90 virtual void RunMC(Int_t nevent=1, const char *setup="Config.C");
88cb7938 91 virtual void Run(Int_t nevent=1, const char *setup="Config.C") {RunMC(nevent,setup);}
dea76e7a 92 virtual void RunLego(const char *setup="Config.C",Int_t nc1=60,Float_t c1min=2,Float_t c1max=178,
88cb7938 93 Int_t nc2=60,Float_t c2min=0,Float_t c2max=360,Float_t rmin=0,
94 Float_t rmax=430,Float_t zmax=10000, AliLegoGenerator* gener=NULL);
dffd31ef 95 virtual Bool_t IsLegoRun() const {return (fLego!=0);}
7f6f9ab2 96 virtual void RunReco(const char *detector=0, Int_t first = 0, Int_t last = 0);
fe4da5cc 97 virtual void SetDisplay(AliDisplay *display) {fDisplay = display;}
07c4aae4 98 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");
d8408e76 99 virtual void SetField(AliMagF* magField);
94de3818 100 virtual TDatabasePDG* PDGDB() const {return fPDGDB;}
b9d0a01d 101
b9d0a01d 102 virtual void Field(const Double_t* x, Double_t* b) const;
5d12ce38 103
104 // Delegations
105 virtual void ResetHits();
106 virtual AliGenerator* Generator() const;
88cb7938 107
4d81e5e7 108
109
110// Added by Alberto Colla
111
112 Bool_t IsFileAccessible(Char_t* name, EAccessMode mode = kFileExists);
113 static Bool_t IsFileAccessible(const char* fnam, EAccessMode mode = kFileExists);
114// Added by Alberto Colla
115
b9d0a01d 116 //
117 // End of MC Application
fe4da5cc 118
88cb7938 119 TTree *TreeE() {return (fRunLoader)?fRunLoader->TreeE():0x0;}
120 TTree *TreeK() {return (fRunLoader)?fRunLoader->TreeK():0x0;}
121 AliStack *Stack() {return (fRunLoader)?fRunLoader->Stack():0x0;}
122 AliHeader* GetHeader() {return (fRunLoader)?fRunLoader->GetHeader():0x0;}
fe4da5cc 123
2057aecb 124 TTree *TreeD() const {MayNotUse("TreeD"); return 0x0;}
125 TTree *TreeS() const {MayNotUse("TreeS"); return 0x0;}
126 TTree *TreeR() const {MayNotUse("TreeR"); return 0x0;}
b8c3b0cc 127
88cb7938 128
129 void SetRunLoader(AliRunLoader* rloader);
130 AliRunLoader* GetRunLoader() const {return fRunLoader;}
131// void SetEventFolderName(const char* eventfoldername);
132 virtual void Announce() const;
133
134 virtual void InitLoaders(); //prepares run (i.e. creates getters)
2057aecb 135 static void Deprecated(TObject *obj, const char *method, const char *replace)
8364b0ef 136 {// Indicates deprecated method
2057aecb 137 if (obj) ::Warning(Form("%s::%s", obj->ClassName(), method),
138 "method is depricated\nPlease use: %s", replace);
139 else ::Warning(method, "method is depricated\nPlease use: %s", replace);
140 }
141
995ad051 142 // Method to introduce the detector misliagnment
143 // It is called by AliSimulation
024cf675 144 static Bool_t ApplyAlignObjsToGeom(TObjArray* AlObjArray);
2057aecb 145
aee8290b 146protected:
9e1a0ddb 147 virtual void Tree2Tree(Option_t *option, const char *detector=0);
2ab0c725 148 Int_t fRun; //! Current run number
149 Int_t fEvent; //! Current event number (from 1)
eef4b160 150 Int_t fEventNrInRun; //! Current unique event number in run
6df200c3 151 Int_t fEventsPerRun; // Number of events per run
2ab0c725 152 TObjArray *fModules; // List of Detectors
2ab0c725 153 TGeometry *fGeometry; // Pointer to geometry
5d12ce38 154 AliMC *fMCApp; // Pointer to virtual MC Application
2ab0c725 155 AliDisplay *fDisplay; //! Pointer to event display
2ab0c725 156 AliMagF *fField; // Magnetic Field Map
2ab0c725 157 Int_t fNdets; // Number of detectors
2ab0c725 158 Bool_t fInitDone; //! True when initialisation done
159 AliLego *fLego; //! Pointer to aliLego object if it exists
160 TDatabasePDG *fPDGDB; // Particle factory object
2ab0c725 161 TString fConfigFunction; // Configuration file to be executed
162 TRandom *fRandom; // Pointer to the random number generator
2ab0c725 163 TString fBaseFileName; // Name of the base root file
4a9de4af 164 Bool_t fIsRootGeometry; //! Flag telling if the geometry is loaded from file
165 TString fGeometryFileName; //! Name of the geometry file
88cb7938 166 AliRunLoader *fRunLoader; //!run getter - written as a separate object
ef42d733 167private:
6c4904c2 168 void Copy(TObject &arun) const;
ef42d733 169
ac810b84 170 ClassDef(AliRun,11) //Supervisor class for all Alice detectors
fe4da5cc 171};
172
75a25b1b 173R__EXTERN AliRun *gAlice;
4d81e5e7 174
fe4da5cc 175#endif