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