X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=STEER%2FAliSimulation.h;h=f23f812f742c3f70ede9a55d47f8c9156479708c;hp=fc8ba3a5d346e5e48fd43b0ea19288b379574c84;hb=eca4fa66e575b53a72c027046dc9ea60487c3240;hpb=e3b20d9a702ed6dce1697d17a56bad31a58dd471 diff --git a/STEER/AliSimulation.h b/STEER/AliSimulation.h index fc8ba3a5d34..f23f812f742 100644 --- a/STEER/AliSimulation.h +++ b/STEER/AliSimulation.h @@ -15,23 +15,24 @@ #include #include #include -#include "AliQA.h" +#include "AliQAv1.h" +#include "AliQAManager.h" class AliCDBId; class AliCDBParam; class AliRunLoader; -class AliQADataMakerSteer ; +class AliLegoGenerator; +class AliLego; +class AliMagF; class AliSimulation: public TNamed { public: AliSimulation(const char* configFileName = "Config.C", const char* name = "AliSimulation", const char* title = "generation, simulation and digitization"); - AliSimulation(const AliSimulation& sim); - AliSimulation& operator = (const AliSimulation& sim); virtual ~AliSimulation(); - static AliSimulation *GetInstance() {return fgInstance;} + static AliSimulation *Instance() {return fgInstance;} void SetNumberOfEvents(Int_t nEvents); void SetConfigFile(const char* fileName); @@ -80,6 +81,9 @@ public: void SetSpecificStorage(const char* calibType, const char* uri); virtual Bool_t Run(Int_t nEvents = 0); + virtual Bool_t RunLego(const char *setup="Config.C",Int_t nc1=60,Float_t c1min=2,Float_t c1max=178, + Int_t nc2=60,Float_t c2min=0,Float_t c2max=360,Float_t rmin=0, + Float_t rmax=430,Float_t zmax=10000, AliLegoGenerator* gener=NULL, Int_t nev = -1); virtual Bool_t RunSimulation(Int_t nEvents = 0); virtual Bool_t RunSDigitization(const char* detectors = "ALL"); @@ -102,15 +106,29 @@ public: // HLT void SetRunHLT(const char* options) {fRunHLT=options;} virtual Bool_t RunHLT(); + virtual Bool_t IsLegoRun() const {return (fLego!=0);} + AliLego* Lego() const {return fLego;} + virtual void FinishRun(); //Quality Assurance Int_t GetDetIndex(const char * detector); - const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; } - void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; } + void SetQACycles(AliQAv1::DETECTORINDEX_t det, const Int_t cycles) { AliQAManager::QAManager()->SetCycleLength(det, cycles) ; } Bool_t RunQA() ; Bool_t SetRunQA(TString detAndAction="ALL:ALL") ; - + void SetQAWriteExpert(AliQAv1::DETECTORINDEX_t det) { AliQAManager::QAManager()->SetWriteExpert(det) ; } + void SetQARefDefaultStorage(const char* uri); + void InitQA(); + void SetEventSpecie(AliRecoParam::EventSpecie_t es) { fEventSpecie = es ; } + void SetWriteQAExpert() { fWriteQAExpertData = kTRUE ; } + + void SetWriteGRPEntry(Bool_t flag = kTRUE) { fWriteGRPEntry = flag; } + void WriteGRPEntry(); + private: + + AliSimulation(const AliSimulation&); // Not implemented + AliSimulation& operator = (const AliSimulation&); // Not implemented + void InitCDB(); void InitRunNumber(); void SetCDBLock(); @@ -141,32 +159,37 @@ private: TObjArray fEventsPerFile; // number of events per file for given detectors and data types TObjArray* fBkgrdFileNames; // names of background files for merging - TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry + TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry Bool_t fUseBkgrdVertex; // use vertex from background in case of merging Bool_t fRegionOfInterest; // digitization in region of interest - TString fCDBUri; //! Uri of the default CDB storage - TObjArray fSpecCDBUri; //! Array with detector specific CDB storages - Int_t fRun; //! Run number, will be passed to CDB and gAlice!! - Int_t fSeed; //! Seed for random number generator - Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized - Bool_t fInitRunNumberCalled; //! flag to check if run number is already initialized - Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader + TString fCDBUri; //! Uri of the default CDB storage + TString fQARefUri; //! Uri of the default QA reference storage + TObjArray fSpecCDBUri; //! Array with detector specific CDB storages + Int_t fRun; //! Run number, will be passed to CDB and gAlice!! + Int_t fSeed; //! Seed for random number generator + Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized + Bool_t fInitRunNumberCalled; //! flag to check if run number is already initialized + Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader - Bool_t fEmbeddingFlag; // Flag for embedding + Bool_t fEmbeddingFlag; // Flag for embedding + AliLego *fLego; //! Pointer to aliLego object if it exists //QA stuff static const Int_t fgkNDetectors = 15 ; // number of detectors static const char * fgkDetectorName[fgkNDetectors] ; // names of detectors - Int_t fQACycles[fgkNDetectors] ; // cycle length (# events) over which QA data are accumulated TString fQADetectors ; // list of detectors to be QA'ed TString fQATasks ; // list of QA tasks to be performed Bool_t fRunQA ; // Runs the QA at the end of simulation + AliRecoParam::EventSpecie_t fEventSpecie ; // type of event (see AliRecoParam::EventSpecie_t) + Bool_t fWriteQAExpertData ; //! decides wheter or not to write experts QA data; true by default //HLT TString fRunHLT; // HLT options, HLT is disabled if empty, default='default' - ClassDef(AliSimulation, 8) // class for running generation, simulation and digitization + Bool_t fWriteGRPEntry; // Write or not GRP entry corresponding to the settings in Config.C + + ClassDef(AliSimulation, 9) // class for running generation, simulation and digitization }; #endif