]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliSimulation.h
Announce changed
[u/mrichter/AliRoot.git] / STEER / AliSimulation.h
CommitLineData
85a5290f 1#ifndef ALISIMULATION_H
2#define ALISIMULATION_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
af7ba10c 8//
9// class for running generation, simulation and digitization
10// Hits, sdigits and digits are created for all detectors by typing:
af7ba10c 11// AliSimulation sim;
12// sim.Run();
13//
14
85a5290f 15#include <TNamed.h>
16#include <TString.h>
3c166bf6 17#include <TObjArray.h>
cae17938 18#include "AliQA.h"
85a5290f 19
e8d02863 20class AliCDBId;
21class AliCDBParam;
85a5290f 22class AliRunLoader;
a1b90a73 23class AliQADataMakerSteer ;
85a5290f 24
25class AliSimulation: public TNamed {
26public:
95601147 27 AliSimulation(const char* configFileName = "Config.C",
28 const char* name = "AliSimulation",
85a5290f 29 const char* title = "generation, simulation and digitization");
30 AliSimulation(const AliSimulation& sim);
31 AliSimulation& operator = (const AliSimulation& sim);
32 virtual ~AliSimulation();
33
b856a511 34 static AliSimulation *GetInstance() {return fgInstance;}
35
85a5290f 36 void SetNumberOfEvents(Int_t nEvents);
37 void SetConfigFile(const char* fileName);
0421c3d1 38 void SetGAliceFile(const char* fileName);
18b43626 39 void SetEventsPerFile(const char* detector, const char* type,
40 Int_t nEvents);
85a5290f 41
42 void SetRunGeneration(Bool_t run) {fRunGeneration = run;};
43 void SetRunSimulation(Bool_t run) {fRunSimulation = run;};
024cf675 44 void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;};
45 void SetLoadAlignData(const char* detectors)
25be1e5c 46 {fLoadAlObjsListOfDets = detectors;};
85a5290f 47 void SetMakeSDigits(const char* detectors)
48 {fMakeSDigits = detectors;};
05526d44 49 void MergeWith(const char* fileName, Int_t nSignalPerBkgrd = 0);
ca30848f 50 void EmbedInto(const char* fileName, Int_t nSignalPerBkgrd = 0);
04bae0a0 51 void SetUseBkgrdVertex(Bool_t useBkgrdVertex)
52 {fUseBkgrdVertex = useBkgrdVertex;};
4df28b43 53 void SetRegionOfInterest(Bool_t flag) {fRegionOfInterest = flag;};
85a5290f 54 void SetMakeDigits(const char* detectors)
55 {fMakeDigits = detectors;};
a5a091ce 56 void SetMakeTrigger(const char* descriptors)
57 {fMakeTrigger = descriptors;};
85a5290f 58 void SetMakeDigitsFromHits(const char* detectors)
59 {fMakeDigitsFromHits = detectors;};
06c7e392 60 void SetWriteRawData(const char* detectors,
61 const char* fileName = NULL,
62 Bool_t deleteIntermediateFiles = kFALSE)
63 {fWriteRawData = detectors; fRawDataFileName = fileName;
64 fDeleteIntermediateFiles = deleteIntermediateFiles;};
024cf675 65 void SetAlignObjArray(TObjArray *array)
6bae477a 66 {fAlignObjArray = array;
67 fLoadAlignFromCDB = kFALSE;}
024cf675 68
6bae477a 69 Bool_t MisalignGeometry(AliRunLoader *runLoader = NULL);
70
795e4a22 71 void SetRunNumber(Int_t run);
72 void SetSeed(Int_t seed);
73
74 void ProcessEnvironmentVars();
024cf675 75
76 // CDB storage activation
ec92bee0 77 void SetDefaultStorage(const char* uri);
00aa02d5 78 void SetSpecificStorage(const char* calibType, const char* uri);
85a5290f 79
80 virtual Bool_t Run(Int_t nEvents = 0);
81
95601147 82 virtual Bool_t RunSimulation(Int_t nEvents = 0);
83 virtual Bool_t RunSDigitization(const char* detectors = "ALL");
8480396b 84 virtual Bool_t RunTrigger(const char* descriptors ="", const char* detectors = "ALL");
007155cc 85 virtual Bool_t WriteTriggerRawData();
95601147 86 virtual Bool_t RunDigitization(const char* detectors = "ALL",
87 const char* excludeDetectors = "");
88 virtual Bool_t RunHitsDigitization(const char* detectors = "ALL");
06c7e392 89 virtual Bool_t WriteRawData(const char* detectors = "ALL",
90 const char* fileName = NULL,
91 Bool_t deleteIntermediateFiles = kFALSE);
92 virtual Bool_t WriteRawFiles(const char* detectors = "ALL");
93 virtual Bool_t ConvertRawFilesToDate(const char* dateFileName = "raw.date");
94 virtual Bool_t ConvertDateToRoot(const char* dateFileName = "raw.date",
95 const char* rootFileName = "raw.root");
ca30848f 96 virtual Bool_t ConvertRaw2SDigits(const char* rawDirectory, const char* esdFile = "");
5b188f2f 97
cae21299 98 // HLT
99 void SetRunHLT(const char* options) {fRunHLT=options;}
100 virtual Bool_t RunHLT();
101
5b188f2f 102 //Quality Assurance
103 Int_t GetDetIndex(const char * detector);
104 const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
105 void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
a1b90a73 106 Bool_t RunQA() ;
759c1df1 107 void SetQA(const Bool_t val) { fRunQA = val ; }
108
95601147 109private:
795e4a22 110 void InitCDB();
111 void InitRunNumber();
112 void SetCDBLock();
113 Bool_t SetRunNumberFromData();
06c7e392 114 AliRunLoader* LoadRun(const char* mode = "UPDATE") const;
05526d44 115 Int_t GetNSignalPerBkgrd(Int_t nEvents = 0) const;
85a5290f 116 Bool_t IsSelected(TString detName, TString& detectors) const;
117
b856a511 118 static AliSimulation *fgInstance; // Static pointer to object
119
85a5290f 120 Bool_t fRunGeneration; // generate prim. particles or not
121 Bool_t fRunSimulation; // simulate detectors (hits) or not
024cf675 122 Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not
25be1e5c 123 TString fLoadAlObjsListOfDets; // Load alignment data from CDB for these detectors
85a5290f 124 TString fMakeSDigits; // create sdigits for these detectors
125 TString fMakeDigits; // create digits for these detectors
a5a091ce 126 TString fMakeTrigger; // run trigger for these descriptors
85a5290f 127 TString fMakeDigitsFromHits; // create digits from hits for these detectors
0421c3d1 128 TString fWriteRawData; // write raw data for these detectors
06c7e392 129 TString fRawDataFileName; // file name for the raw data file
130 Bool_t fDeleteIntermediateFiles; // delete intermediate raw data files
85a5290f 131 Bool_t fStopOnError; // stop or continue on errors
132
133 Int_t fNEvents; // number of events
134 TString fConfigFileName; // name of the config file
135 TString fGAliceFileName; // name of the galice file
18b43626 136 TObjArray fEventsPerFile; // number of events per file for given detectors and data types
137
85a5290f 138 TObjArray* fBkgrdFileNames; // names of background files for merging
024cf675 139 TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry
04bae0a0 140 Bool_t fUseBkgrdVertex; // use vertex from background in case of merging
4df28b43 141 Bool_t fRegionOfInterest; // digitization in region of interest
85a5290f 142
795e4a22 143 TString fCDBUri; //! Uri of the default CDB storage
144 TObjArray fSpecCDBUri; //! Array with detector specific CDB storages
145 Int_t fRun; //! Run number, will be passed to CDB and gAlice!!
146 Int_t fSeed; //! Seed for random number generator
147 Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized
148 Bool_t fInitRunNumberCalled; //! flag to check if run number is already initialized
149 Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader
150
ca30848f 151 Bool_t fEmbeddingFlag; // Flag for embedding
5b188f2f 152
153 //QA stuff
a1b90a73 154 static const Int_t fgkNDetectors = 15 ; // number of detectors
155 static const char * fgkDetectorName[fgkNDetectors] ; // names of detectors
156 Int_t fQACycles[fgkNDetectors] ; // cycle length (# events) over which QA data are accumulated
04236e67 157 Bool_t fRunQA ; // Runs the QA at the end of simulation
5b188f2f 158
cae21299 159 //HLT
160 TString fRunHLT; // HLT options, HLT is disabled if empty, default='default'
161
759c1df1 162 ClassDef(AliSimulation, 7) // class for running generation, simulation and digitization
85a5290f 163};
164
165#endif