]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliSimulation.cxx
Bug Fix: Forgot to call the initialization of
[u/mrichter/AliRoot.git] / STEER / AliSimulation.cxx
CommitLineData
85a5290f 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18///////////////////////////////////////////////////////////////////////////////
19// //
20// class for running generation, simulation and digitization //
21// //
22// Hits, sdigits and digits are created for all detectors by typing: //
23// //
24// AliSimulation sim; //
25// sim.Run(); //
26// //
27// The Run method returns kTRUE in case of successful execution. //
28// The number of events can be given as argument to the Run method or it //
29// can be set by //
30// //
31// sim.SetNumberOfEvents(n); //
32// //
95601147 33// The name of the configuration file can be passed as argument to the //
34// AliSimulation constructor or can be specified by //
85a5290f 35// //
36// sim.SetConfigFile("..."); //
37// //
38// The generation of particles and the simulation of detector hits can be //
39// switched on or off by //
40// //
41// sim.SetRunGeneration(kTRUE); // generation of primary particles //
42// sim.SetRunSimulation(kFALSE); // but no tracking //
43// //
44// For which detectors sdigits and digits will be created, can be steered //
45// by //
46// //
47// sim.SetMakeSDigits("ALL"); // make sdigits for all detectors //
48// sim.SetMakeDigits("ITS TPC"); // make digits only for ITS and TPC //
49// //
50// The argument is a (case sensitive) string with the names of the //
51// detectors separated by a space. An empty string ("") can be used to //
52// disable the creation of sdigits or digits. The special string "ALL" //
53// selects all available detectors. This is the default. //
54// //
55// The creation of digits from hits instead of from sdigits can be selected //
56// by //
57// //
58// sim.SetMakeDigitsFromHits("TRD"); //
59// //
60// The argument is again a string with the selected detectors. Be aware that //
61// this feature is not available for all detectors and that merging is not //
62// possible, when digits are created directly from hits. //
63// //
05526d44 64// Background events can be merged by calling //
85a5290f 65// //
66// sim.MergeWith("background/galice.root", 2); //
67// //
68// The first argument is the file name of the background galice file. The //
69// second argument is the number of signal events per background event. //
05526d44 70// By default this number is calculated from the number of available //
71// background events. MergeWith can be called several times to merge more //
72// than two event streams. It is assumed that the sdigits were already //
73// produced for the background events. //
85a5290f 74// //
0421c3d1 75// The output of raw data can be switched on by calling //
76// //
77// sim.SetWriteRawData("MUON"); // write raw data for MUON //
78// //
06c7e392 79// The default output format of the raw data are DDL files. They are //
80// converted to a DATE file, if a file name is given as second argument. //
81// For this conversion the program "dateStream" is required. If the file //
82// name has the extension ".root", the DATE file is converted to a root //
83// file. The program "alimdc" is used for this purpose. For the conversion //
84// to DATE and root format the two conversion programs have to be installed. //
85// Only the raw data in the final format is kept if the third argument is //
86// kTRUE. //
87// //
0421c3d1 88// The methods RunSimulation, RunSDigitization, RunDigitization, //
89// RunHitsDigitization and WriteRawData can be used to run only parts of //
06c7e392 90// the full simulation chain. The creation of raw data DDL files and their //
91// conversion to the DATE or root format can be run directly by calling //
92// the methods WriteRawFiles, ConvertRawFilesToDate and ConvertDateToRoot. //
95601147 93// //
18b43626 94// The default number of events per file, which is usually set in the //
95// config file, can be changed for individual detectors and data types //
96// by calling //
97// //
98// sim.SetEventsPerFile("PHOS", "Reconstructed Points", 3); //
99// //
100// The first argument is the detector, the second one the data type and the //
101// last one the number of events per file. Valid data types are "Hits", //
102// "Summable Digits", "Digits", "Reconstructed Points" and "Tracks". //
103// The number of events per file has to be set before the simulation of //
104// hits. Otherwise it has no effect. //
105// //
85a5290f 106///////////////////////////////////////////////////////////////////////////////
107
3e2e3ece 108#include <TCint.h>
109#include <TFile.h>
f7a1cc68 110#include <TGeoGlobalMagField.h>
e8d02863 111#include <TGeoManager.h>
85a5290f 112#include <TObjString.h>
fc7e1b1c 113#include <TROOT.h>
3e2e3ece 114#include <TSystem.h>
115#include <TVirtualMC.h>
116#include <TVirtualMCApplication.h>
5cf76849 117#include <TDatime.h>
85a5290f 118
3e2e3ece 119#include "AliAlignObj.h"
e8d02863 120#include "AliCDBEntry.h"
121#include "AliCDBManager.h"
3e2e3ece 122#include "AliCDBStorage.h"
123#include "AliCTPRawData.h"
124#include "AliCentralTrigger.h"
e8d02863 125#include "AliCentralTrigger.h"
3e2e3ece 126#include "AliCodeTimer.h"
362c9d61 127#include "AliDAQ.h"
af7ba10c 128#include "AliDigitizer.h"
6d985680 129#include "AliESDEvent.h"
3e2e3ece 130#include "AliGRPObject.h"
131#include "AliGenEventHeader.h"
af7ba10c 132#include "AliGenerator.h"
3e2e3ece 133#include "AliGeomManager.h"
134#include "AliHLTSimulation.h"
135#include "AliHeader.h"
f7a1cc68 136#include "AliLego.h"
137#include "AliLegoGenerator.h"
e8d02863 138#include "AliLog.h"
3e2e3ece 139#include "AliMC.h"
140#include "AliMagF.h"
af7ba10c 141#include "AliModule.h"
3e2e3ece 142#include "AliPDG.h"
143#include "AliRawReaderDate.h"
144#include "AliRawReaderFile.h"
145#include "AliRawReaderRoot.h"
af7ba10c 146#include "AliRun.h"
147#include "AliRunDigitizer.h"
148#include "AliRunLoader.h"
149#include "AliSimulation.h"
27fc67fa 150#include "AliSysInfo.h"
3e2e3ece 151#include "AliVertexGenFile.h"
85a5290f 152
153ClassImp(AliSimulation)
154
b856a511 155AliSimulation *AliSimulation::fgInstance = 0;
5b188f2f 156const char* AliSimulation::fgkDetectorName[AliSimulation::fgkNDetectors] = {"ITS", "TPC", "TRD", "TOF", "PHOS", "HMPID", "EMCAL", "MUON", "FMD", "ZDC", "PMD", "T0", "VZERO", "ACORDE", "HLT"};
85a5290f 157
158//_____________________________________________________________________________
795e4a22 159AliSimulation::AliSimulation(const char* configFileName,
95601147 160 const char* name, const char* title) :
161 TNamed(name, title),
162
163 fRunGeneration(kTRUE),
164 fRunSimulation(kTRUE),
024cf675 165 fLoadAlignFromCDB(kTRUE),
25be1e5c 166 fLoadAlObjsListOfDets("ALL"),
95601147 167 fMakeSDigits("ALL"),
168 fMakeDigits("ALL"),
28da60d3 169 fTriggerConfig(""),
95601147 170 fMakeDigitsFromHits(""),
0421c3d1 171 fWriteRawData(""),
06c7e392 172 fRawDataFileName(""),
173 fDeleteIntermediateFiles(kFALSE),
67327b72 174 fWriteSelRawData(kFALSE),
95601147 175 fStopOnError(kFALSE),
95601147 176 fNEvents(1),
177 fConfigFileName(configFileName),
178 fGAliceFileName("galice.root"),
18b43626 179 fEventsPerFile(),
95601147 180 fBkgrdFileNames(NULL),
995ad051 181 fAlignObjArray(NULL),
04bae0a0 182 fUseBkgrdVertex(kTRUE),
024cf675 183 fRegionOfInterest(kFALSE),
795e4a22 184 fCDBUri(""),
f1c1204d 185 fQARefUri(""),
ca30848f 186 fSpecCDBUri(),
795e4a22 187 fRun(-1),
188 fSeed(0),
189 fInitCDBCalled(kFALSE),
190 fInitRunNumberCalled(kFALSE),
191 fSetRunNumberFromDataCalled(kFALSE),
cae21299 192 fEmbeddingFlag(kFALSE),
3e2e3ece 193 fLego(NULL),
e3b20d9a 194 fQADetectors("ALL"),
195 fQATasks("ALL"),
759c1df1 196 fRunQA(kTRUE),
57acd2d2 197 fEventSpecie(AliRecoParam::kDefault),
75373542 198 fWriteQAExpertData(kTRUE),
d97f1dbe 199 fGeometryFile(),
fc7e1b1c 200 fRunHLT("default"),
c4affb19 201 fpHLT(NULL),
fc7e1b1c 202 fWriteGRPEntry(kTRUE)
85a5290f 203{
204// create simulation object with default parameters
b856a511 205 fgInstance = this;
0421c3d1 206 SetGAliceFile("galice.root");
5b188f2f 207
208// for QA
634696f5 209 AliQAManager * qam = AliQAManager::QAManager(AliQAv1::kSIMMODE) ;
eca4fa66 210 qam->SetActiveDetectors(fQADetectors) ;
4e25ac79 211 fQATasks = Form("%d %d %d", AliQAv1::kHITS, AliQAv1::kSDIGITS, AliQAv1::kDIGITS) ;
eca4fa66 212 qam->SetTasks(fQATasks) ;
85a5290f 213}
214
85a5290f 215//_____________________________________________________________________________
216AliSimulation::~AliSimulation()
217{
218// clean up
219
18b43626 220 fEventsPerFile.Delete();
024cf675 221// if(fAlignObjArray) fAlignObjArray->Delete(); // fAlignObjArray->RemoveAll() ???
222// delete fAlignObjArray; fAlignObjArray=0;
18b43626 223
95601147 224 if (fBkgrdFileNames) {
225 fBkgrdFileNames->Delete();
226 delete fBkgrdFileNames;
227 }
ec92bee0 228
229 fSpecCDBUri.Delete();
b856a511 230 if (fgInstance==this) fgInstance = 0;
87932dab 231
bf76b847 232 AliQAManager::QAManager()->ShowQA() ;
233 AliQAManager::Destroy() ;
87932dab 234 AliCodeTimer::Instance()->Print();
85a5290f 235}
236
237
238//_____________________________________________________________________________
239void AliSimulation::SetNumberOfEvents(Int_t nEvents)
240{
241// set the number of events for one run
242
243 fNEvents = nEvents;
244}
245
f1c1204d 246//_____________________________________________________________________________
247void AliSimulation::InitQA()
248{
249 // activate a default CDB storage
250 // First check if we have any CDB storage set, because it is used
251 // to retrieve the calibration and alignment constants
252
253 if (fInitCDBCalled) return;
254 fInitCDBCalled = kTRUE;
255
634696f5 256 AliQAManager * qam = AliQAManager::QAManager(AliQAv1::kSIMMODE) ;
eca4fa66 257 qam->SetActiveDetectors(fQADetectors) ;
4e25ac79 258 fQATasks = Form("%d %d %d", AliQAv1::kHITS, AliQAv1::kSDIGITS, AliQAv1::kDIGITS) ;
eca4fa66 259 qam->SetTasks(fQATasks) ;
75373542 260 if (fWriteQAExpertData)
eca4fa66 261 qam->SetWriteExpert() ;
f1c1204d 262
eca4fa66 263 if (qam->IsDefaultStorageSet()) {
f1c1204d 264 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
265 AliWarning("Default QA reference storage has been already set !");
266 AliWarning(Form("Ignoring the default storage declared in AliSimulation: %s",fQARefUri.Data()));
267 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
eca4fa66 268 fQARefUri = qam->GetDefaultStorage()->GetURI();
f1c1204d 269 } else {
270 if (fQARefUri.Length() > 0) {
271 AliDebug(2,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
272 AliDebug(2, Form("Default QA reference storage is set to: %s", fQARefUri.Data()));
273 AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
274 } else {
275 fQARefUri="local://$ALICE_ROOT/QARef";
276 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
277 AliWarning("Default QA reference storage not yet set !!!!");
278 AliWarning(Form("Setting it now to: %s", fQARefUri.Data()));
279 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
280 }
eca4fa66 281 qam->SetDefaultStorage(fQARefUri);
f1c1204d 282 }
283}
284
024cf675 285//_____________________________________________________________________________
795e4a22 286void AliSimulation::InitCDB()
024cf675 287{
288// activate a default CDB storage
289// First check if we have any CDB storage set, because it is used
290// to retrieve the calibration and alignment constants
291
795e4a22 292 if (fInitCDBCalled) return;
293 fInitCDBCalled = kTRUE;
294
024cf675 295 AliCDBManager* man = AliCDBManager::Instance();
ec92bee0 296 if (man->IsDefaultStorageSet())
024cf675 297 {
ec92bee0 298 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
299 AliWarning("Default CDB storage has been already set !");
ced249e6 300 AliWarning(Form("Ignoring the default storage declared in AliSimulation: %s",fCDBUri.Data()));
ec92bee0 301 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
795e4a22 302 fCDBUri = man->GetDefaultStorage()->GetURI();
ec92bee0 303 }
304 else {
795e4a22 305 if (fCDBUri.Length() > 0)
306 {
307 AliDebug(2,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
308 AliDebug(2, Form("Default CDB storage is set to: %s", fCDBUri.Data()));
309 AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
310 } else {
162637e4 311 fCDBUri="local://$ALICE_ROOT/OCDB";
795e4a22 312 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
313 AliWarning("Default CDB storage not yet set !!!!");
314 AliWarning(Form("Setting it now to: %s", fCDBUri.Data()));
315 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
316
317 }
ec92bee0 318 man->SetDefaultStorage(fCDBUri);
319 }
320
321 // Now activate the detector specific CDB storage locations
322 for (Int_t i = 0; i < fSpecCDBUri.GetEntriesFast(); i++) {
323 TObject* obj = fSpecCDBUri[i];
324 if (!obj) continue;
b8ec52f6 325 AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
326 AliDebug(2, Form("Specific CDB storage for %s is set to: %s",obj->GetName(),obj->GetTitle()));
327 AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
c3a7b59a 328 man->SetSpecificStorage(obj->GetName(), obj->GetTitle());
ec92bee0 329 }
795e4a22 330
024cf675 331}
332
333//_____________________________________________________________________________
795e4a22 334void AliSimulation::InitRunNumber(){
335// check run number. If not set, set it to 0 !!!!
336
337 if (fInitRunNumberCalled) return;
338 fInitRunNumberCalled = kTRUE;
339
340 AliCDBManager* man = AliCDBManager::Instance();
341 if (man->GetRun() >= 0)
342 {
8c8fbdcd 343 AliFatal(Form("Run number cannot be set in AliCDBManager before start of simulation: "
344 "Use external variable DC_RUN or AliSimulation::SetRun()!"));
795e4a22 345 }
8c8fbdcd 346
347 if(fRun >= 0) {
795e4a22 348 AliDebug(2, Form("Setting CDB run number to: %d",fRun));
8c8fbdcd 349 } else {
795e4a22 350 fRun=0;
76c8e8d6 351 AliWarning(Form("Run number not yet set !!!! Setting it now to: %d",
352 fRun));
795e4a22 353 }
8c8fbdcd 354 man->SetRun(fRun);
024cf675 355
795e4a22 356 man->Print();
024cf675 357
358}
359
00aa02d5 360//_____________________________________________________________________________
795e4a22 361void AliSimulation::SetCDBLock() {
362 // Set CDB lock: from now on it is forbidden to reset the run number
363 // or the default storage or to activate any further storage!
364
365 AliCDBManager::Instance()->SetLock(1);
366}
367
368//_____________________________________________________________________________
369void AliSimulation::SetDefaultStorage(const char* uri) {
f1c1204d 370 // Store the desired default CDB storage location
371 // Activate it later within the Run() method
372
795e4a22 373 fCDBUri = uri;
f1c1204d 374
375}
00aa02d5 376
f1c1204d 377//_____________________________________________________________________________
378void AliSimulation::SetQARefDefaultStorage(const char* uri) {
379 // Store the desired default CDB storage location
380 // Activate it later within the Run() method
381
382 fQARefUri = uri;
4e25ac79 383 AliQAv1::SetQARefStorage(fQARefUri.Data()) ;
00aa02d5 384}
385
024cf675 386//_____________________________________________________________________________
c3a7b59a 387void AliSimulation::SetSpecificStorage(const char* calibType, const char* uri) {
ec92bee0 388// Store a detector-specific CDB storage location
389// Activate it later within the Run() method
024cf675 390
c3a7b59a 391 AliCDBPath aPath(calibType);
392 if(!aPath.IsValid()){
393 AliError(Form("Not a valid path: %s", calibType));
394 return;
395 }
396
397 TObject* obj = fSpecCDBUri.FindObject(calibType);
ec92bee0 398 if (obj) fSpecCDBUri.Remove(obj);
c3a7b59a 399 fSpecCDBUri.Add(new TNamed(calibType, uri));
024cf675 400
401}
402
795e4a22 403//_____________________________________________________________________________
404void AliSimulation::SetRunNumber(Int_t run)
405{
406// sets run number
407// Activate it later within the Run() method
408
409 fRun = run;
410}
411
412//_____________________________________________________________________________
413void AliSimulation::SetSeed(Int_t seed)
414{
415// sets seed number
416// Activate it later within the Run() method
417
418 fSeed = seed;
419}
420
421//_____________________________________________________________________________
422Bool_t AliSimulation::SetRunNumberFromData()
423{
424 // Set the CDB manager run number
425 // The run number is retrieved from gAlice
426
427 if (fSetRunNumberFromDataCalled) return kTRUE;
428 fSetRunNumberFromDataCalled = kTRUE;
429
430 AliCDBManager* man = AliCDBManager::Instance();
431 Int_t runData = -1, runCDB = -1;
432
433 AliRunLoader* runLoader = LoadRun("READ");
434 if (!runLoader) return kFALSE;
435 else {
d3b3a3b2 436 runData = runLoader->GetHeader()->GetRun();
795e4a22 437 delete runLoader;
438 }
439
440 runCDB = man->GetRun();
441 if(runCDB >= 0) {
442 if (runCDB != runData) {
443 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
444 AliWarning(Form("A run number was previously set in AliCDBManager: %d !", runCDB));
445 AliWarning(Form("It will be replaced with the run number got from run header: %d !", runData));
446 AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
447 }
448
449 }
450
451 man->SetRun(runData);
452 fRun = runData;
453
454 if(man->GetRun() < 0) {
455 AliError("Run number not properly initalized!");
456 return kFALSE;
457 }
458
459 man->Print();
460
461 return kTRUE;
462}
463
85a5290f 464//_____________________________________________________________________________
465void AliSimulation::SetConfigFile(const char* fileName)
466{
467// set the name of the config file
468
469 fConfigFileName = fileName;
470}
471
0421c3d1 472//_____________________________________________________________________________
473void AliSimulation::SetGAliceFile(const char* fileName)
474{
475// set the name of the galice file
476// the path is converted to an absolute one if it is relative
477
478 fGAliceFileName = fileName;
479 if (!gSystem->IsAbsoluteFileName(fGAliceFileName)) {
480 char* absFileName = gSystem->ConcatFileName(gSystem->WorkingDirectory(),
481 fGAliceFileName);
482 fGAliceFileName = absFileName;
483 delete[] absFileName;
484 }
ac1671c0 485
486 AliDebug(2, Form("galice file name set to %s", fileName));
0421c3d1 487}
488
18b43626 489//_____________________________________________________________________________
490void AliSimulation::SetEventsPerFile(const char* detector, const char* type,
491 Int_t nEvents)
492{
493// set the number of events per file for the given detector and data type
494// ("Hits", "Summable Digits", "Digits", "Reconstructed Points" or "Tracks")
495
496 TNamed* obj = new TNamed(detector, type);
497 obj->SetUniqueID(nEvents);
498 fEventsPerFile.Add(obj);
499}
500
6bae477a 501//_____________________________________________________________________________
502Bool_t AliSimulation::MisalignGeometry(AliRunLoader *runLoader)
503{
504 // Read the alignment objects from CDB.
505 // Each detector is supposed to have the
506 // alignment objects in DET/Align/Data CDB path.
507 // All the detector objects are then collected,
508 // sorted by geometry level (starting from ALIC) and
509 // then applied to the TGeo geometry.
510 // Finally an overlaps check is performed.
511
74ae4297 512 if (!AliGeomManager::GetGeometry() || !AliGeomManager::GetGeometry()->IsClosed()) {
513 AliError("Can't apply the misalignment! Geometry is not loaded or it is still opened!");
0717eed2 514 return kFALSE;
515 }
795e4a22 516
517 // initialize CDB storage, run number, set CDB lock
518 InitCDB();
519// if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
520 SetCDBLock();
521
6bae477a 522 Bool_t delRunLoader = kFALSE;
523 if (!runLoader) {
524 runLoader = LoadRun("READ");
525 if (!runLoader) return kFALSE;
526 delRunLoader = kTRUE;
527 }
795e4a22 528
b856a511 529 // Export ideal geometry
d97f1dbe 530 if(!IsGeometryFromFile()) AliGeomManager::GetGeometry()->Export("geometry.root");
b856a511 531
25be1e5c 532 // Load alignment data from CDB and apply to geometry through AliGeomManager
6bae477a 533 if(fLoadAlignFromCDB){
25be1e5c 534
535 TString detStr = fLoadAlObjsListOfDets;
536 TString loadAlObjsListOfDets = "";
537
538 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
539 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
540 AliModule* det = (AliModule*) detArray->At(iDet);
541 if (!det || !det->IsActive()) continue;
542 if (IsSelected(det->GetName(), detStr)) {
0717eed2 543 //add det to list of dets to be aligned from CDB
544 loadAlObjsListOfDets += det->GetName();
545 loadAlObjsListOfDets += " ";
25be1e5c 546 }
547 } // end loop over detectors
53dd3c3d 548 loadAlObjsListOfDets.Prepend("GRP "); //add alignment objects for non-sensitive modules
45daac75 549 AliGeomManager::ApplyAlignObjsFromCDB(loadAlObjsListOfDets.Data());
25be1e5c 550 }else{
551 // Check if the array with alignment objects was
552 // provided by the user. If yes, apply the objects
553 // to the present TGeo geometry
554 if (fAlignObjArray) {
45daac75 555 if (AliGeomManager::ApplyAlignObjsToGeom(*fAlignObjArray) == kFALSE) {
0717eed2 556 AliError("The misalignment of one or more volumes failed!"
557 "Compare the list of simulated detectors and the list of detector alignment data!");
558 if (delRunLoader) delete runLoader;
559 return kFALSE;
6bae477a 560 }
561 }
6bae477a 562 }
563
ef7ff1f9 564 // Update the internal geometry of modules (ITS needs it)
25be1e5c 565 TString detStr = fLoadAlObjsListOfDets;
ef7ff1f9 566 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
567 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
568
569 AliModule* det = (AliModule*) detArray->At(iDet);
570 if (!det || !det->IsActive()) continue;
571 if (IsSelected(det->GetName(), detStr)) {
572 det->UpdateInternalGeometry();
573 }
574 } // end loop over detectors
575
576
6bae477a 577 if (delRunLoader) delete runLoader;
578
579 return kTRUE;
580}
581
85a5290f 582//_____________________________________________________________________________
583void AliSimulation::MergeWith(const char* fileName, Int_t nSignalPerBkgrd)
584{
585// add a file with background events for merging
586
587 TObjString* fileNameStr = new TObjString(fileName);
588 fileNameStr->SetUniqueID(nSignalPerBkgrd);
95601147 589 if (!fBkgrdFileNames) fBkgrdFileNames = new TObjArray;
85a5290f 590 fBkgrdFileNames->Add(fileNameStr);
591}
592
ca30848f 593void AliSimulation::EmbedInto(const char* fileName, Int_t nSignalPerBkgrd)
594{
595// add a file with background events for embeddin
596 MergeWith(fileName, nSignalPerBkgrd);
597 fEmbeddingFlag = kTRUE;
598}
85a5290f 599
600//_____________________________________________________________________________
601Bool_t AliSimulation::Run(Int_t nEvents)
602{
603// run the generation, simulation and digitization
604
c65c502a 605
99c136e1 606 AliCodeTimerAuto("",0)
6fcf567c 607 AliSysInfo::AddStamp("Start_Run");
87932dab 608
795e4a22 609 // Load run number and seed from environmental vars
610 ProcessEnvironmentVars();
6fcf567c 611 AliSysInfo::AddStamp("ProcessEnvironmentVars");
b0314964 612
795e4a22 613 gRandom->SetSeed(fSeed);
614
85a5290f 615 if (nEvents > 0) fNEvents = nEvents;
616
c4affb19 617 // create and setup the HLT instance
618 if (!fRunHLT.IsNull() && !CreateHLT()) {
619 if (fStopOnError) return kFALSE;
620 // disable HLT
621 fRunHLT="";
622 }
c516e34c 623
85a5290f 624 // generation and simulation -> hits
625 if (fRunGeneration) {
85a5290f 626 if (!RunSimulation()) if (fStopOnError) return kFALSE;
627 }
6fcf567c 628 AliSysInfo::AddStamp("RunSimulation");
795e4a22 629
630 // initialize CDB storage from external environment
631 // (either CDB manager or AliSimulation setters),
632 // if not already done in RunSimulation()
633 InitCDB();
6fcf567c 634 AliSysInfo::AddStamp("InitCDB");
795e4a22 635
636 // Set run number in CDBManager from data
637 // From this point on the run number must be always loaded from data!
638 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
639
640 // Set CDB lock: from now on it is forbidden to reset the run number
641 // or the default storage or to activate any further storage!
642 SetCDBLock();
6bae477a 643
25be1e5c 644 // If RunSimulation was not called, load the geometry and misalign it
74ae4297 645 if (!AliGeomManager::GetGeometry()) {
646 // Initialize the geometry manager
45daac75 647 AliGeomManager::LoadGeometry("geometry.root");
6fcf567c 648 AliSysInfo::AddStamp("GetGeometry");
649
ff5970a3 650
651// // Check that the consistency of symbolic names for the activated subdetectors
652// // in the geometry loaded by AliGeomManager
653// AliRunLoader* runLoader = LoadRun("READ");
654// if (!runLoader) return kFALSE;
655//
656// TString detsToBeChecked = "";
657// TObjArray* detArray = runLoader->GetAliRun()->Detectors();
658// for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
659// AliModule* det = (AliModule*) detArray->At(iDet);
660// if (!det || !det->IsActive()) continue;
661// detsToBeChecked += det->GetName();
662// detsToBeChecked += " ";
663// } // end loop over detectors
664// if(!AliGeomManager::CheckSymNamesLUT(detsToBeChecked.Data()))
665 if(!AliGeomManager::CheckSymNamesLUT("ALL"))
0bf7aade 666 AliFatalClass("Current loaded geometry differs in the definition of symbolic names!");
ff5970a3 667
74ae4297 668 if (!AliGeomManager::GetGeometry()) if (fStopOnError) return kFALSE;
669 // Misalign geometry
25be1e5c 670 if(!MisalignGeometry()) if (fStopOnError) return kFALSE;
6bae477a 671 }
6fcf567c 672 AliSysInfo::AddStamp("MissalignGeometry");
25be1e5c 673
27fc67fa 674
85a5290f 675 // hits -> summable digits
27fc67fa 676 AliSysInfo::AddStamp("Start_sdigitization");
85a5290f 677 if (!fMakeSDigits.IsNull()) {
678 if (!RunSDigitization(fMakeSDigits)) if (fStopOnError) return kFALSE;
a1b90a73 679
85a5290f 680 }
27fc67fa 681 AliSysInfo::AddStamp("Stop_sdigitization");
c65c502a 682
27fc67fa 683 AliSysInfo::AddStamp("Start_digitization");
795e4a22 684 // summable digits -> digits
85a5290f 685 if (!fMakeDigits.IsNull()) {
686 if (!RunDigitization(fMakeDigits, fMakeDigitsFromHits)) {
687 if (fStopOnError) return kFALSE;
688 }
a1b90a73 689 }
27fc67fa 690 AliSysInfo::AddStamp("Stop_digitization");
85a5290f 691
795e4a22 692
693
85a5290f 694 // hits -> digits
695 if (!fMakeDigitsFromHits.IsNull()) {
95601147 696 if (fBkgrdFileNames && (fBkgrdFileNames->GetEntriesFast() > 0)) {
ac1671c0 697 AliWarning(Form("Merging and direct creation of digits from hits "
698 "was selected for some detectors. "
699 "No merging will be done for the following detectors: %s",
700 fMakeDigitsFromHits.Data()));
85a5290f 701 }
702 if (!RunHitsDigitization(fMakeDigitsFromHits)) {
703 if (fStopOnError) return kFALSE;
704 }
705 }
706
6fcf567c 707 AliSysInfo::AddStamp("Hits2Digits");
795e4a22 708
709
a5a091ce 710 // digits -> trigger
28da60d3 711 if (!RunTrigger(fTriggerConfig,fMakeDigits)) {
087426de 712 if (fStopOnError) return kFALSE;
a5a091ce 713 }
714
6fcf567c 715 AliSysInfo::AddStamp("RunTrigger");
795e4a22 716
717
0421c3d1 718 // digits -> raw data
719 if (!fWriteRawData.IsNull()) {
06c7e392 720 if (!WriteRawData(fWriteRawData, fRawDataFileName,
67327b72 721 fDeleteIntermediateFiles,fWriteSelRawData)) {
0421c3d1 722 if (fStopOnError) return kFALSE;
723 }
724 }
725
6fcf567c 726 AliSysInfo::AddStamp("WriteRaw");
795e4a22 727
5f6d0c0d 728 // run HLT simulation on simulated digit data if raw data is not
729 // simulated, otherwise its called as part of WriteRawData
730 if (!fRunHLT.IsNull() && fWriteRawData.IsNull()) {
cae21299 731 if (!RunHLT()) {
732 if (fStopOnError) return kFALSE;
733 }
734 }
6fcf567c 735
736 AliSysInfo::AddStamp("RunHLT");
795e4a22 737
04236e67 738 //QA
739 if (fRunQA) {
740 Bool_t rv = RunQA() ;
741 if (!rv)
742 if (fStopOnError)
743 return kFALSE ;
744 }
795e4a22 745
6fcf567c 746 AliSysInfo::AddStamp("RunQA");
747
795e4a22 748 // Cleanup of CDB manager: cache and active storages!
749 AliCDBManager::Instance()->ClearCache();
750
85a5290f 751 return kTRUE;
752}
753
3e2e3ece 754//_______________________________________________________________________
755Bool_t AliSimulation::RunLego(const char *setup, Int_t nc1, Float_t c1min,
756 Float_t c1max,Int_t nc2,Float_t c2min,Float_t c2max,
757 Float_t rmin,Float_t rmax,Float_t zmax, AliLegoGenerator* gener, Int_t nev)
758{
759 //
760 // Generates lego plots of:
761 // - radiation length map phi vs theta
762 // - radiation length map phi vs eta
763 // - interaction length map
764 // - g/cm2 length map
765 //
766 // ntheta bins in theta, eta
767 // themin minimum angle in theta (degrees)
768 // themax maximum angle in theta (degrees)
769 // nphi bins in phi
770 // phimin minimum angle in phi (degrees)
771 // phimax maximum angle in phi (degrees)
772 // rmin minimum radius
773 // rmax maximum radius
774 //
775 //
776 // The number of events generated = ntheta*nphi
777 // run input parameters in macro setup (default="Config.C")
778 //
779 // Use macro "lego.C" to visualize the 3 lego plots in spherical coordinates
780 //Begin_Html
781 /*
782 <img src="picts/AliRunLego1.gif">
783 */
784 //End_Html
785 //Begin_Html
786 /*
787 <img src="picts/AliRunLego2.gif">
788 */
789 //End_Html
790 //Begin_Html
791 /*
792 <img src="picts/AliRunLego3.gif">
793 */
794 //End_Html
795 //
796
797// run the generation and simulation
798
99c136e1 799 AliCodeTimerAuto("",0)
3e2e3ece 800
801 // initialize CDB storage and run number from external environment
802 // (either CDB manager or AliSimulation setters)
803 InitCDB();
804 InitRunNumber();
805 SetCDBLock();
806
807 if (!gAlice) {
808 AliError("no gAlice object. Restart aliroot and try again.");
809 return kFALSE;
810 }
811 if (gAlice->Modules()->GetEntries() > 0) {
812 AliError("gAlice was already run. Restart aliroot and try again.");
813 return kFALSE;
814 }
815
816 AliInfo(Form("initializing gAlice with config file %s",
817 fConfigFileName.Data()));
818
819 // Number of events
820 if (nev == -1) nev = nc1 * nc2;
821
822 // check if initialisation has been done
823 // If runloader has been initialized, set the number of events per file to nc1 * nc2
824
825 // Set new generator
826 if (!gener) gener = new AliLegoGenerator();
827 //
828 // Configure Generator
829
830 gener->SetRadiusRange(rmin, rmax);
831 gener->SetZMax(zmax);
832 gener->SetCoor1Range(nc1, c1min, c1max);
833 gener->SetCoor2Range(nc2, c2min, c2max);
834
835
836 //Create Lego object
837 fLego = new AliLego("lego",gener);
838
839 //__________________________________________________________________________
840
841 gAlice->Announce();
842
843 gROOT->LoadMacro(setup);
844 gInterpreter->ProcessLine(gAlice->GetConfigFunction());
845
846 if(AliCDBManager::Instance()->GetRun() >= 0) {
847 SetRunNumber(AliCDBManager::Instance()->GetRun());
848 } else {
849 AliWarning("Run number not initialized!!");
850 }
f7a1cc68 851
33c3c91a 852 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 853
854 AliPDG::AddParticlesToPdgDataBase();
855
f7a1cc68 856 gMC->SetMagField(TGeoGlobalMagField::Instance()->GetField());
857
55338a9a 858 gAlice->GetMCApp()->Init();
859
f7a1cc68 860
3e2e3ece 861 //Must be here because some MCs (G4) adds detectors here and not in Config.C
862 gAlice->InitLoaders();
33c3c91a 863 AliRunLoader::Instance()->MakeTree("E");
3e2e3ece 864
865 //
866 // Save stuff at the beginning of the file to avoid file corruption
33c3c91a 867 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 868 gAlice->Write();
869
870 //Save current generator
871 AliGenerator *gen=gAlice->GetMCApp()->Generator();
872 gAlice->GetMCApp()->ResetGenerator(gener);
873 //Prepare MC for Lego Run
874 gMC->InitLego();
875
876 //Run Lego Object
877
878
33c3c91a 879 AliRunLoader::Instance()->SetNumberOfEventsPerFile(nev);
3e2e3ece 880 gMC->ProcessRun(nev);
881
882 // End of this run, close files
883 FinishRun();
884 // Restore current generator
885 gAlice->GetMCApp()->ResetGenerator(gen);
886 // Delete Lego Object
887 delete fLego;
888
889 return kTRUE;
890}
891
a5a091ce 892//_____________________________________________________________________________
8480396b 893Bool_t AliSimulation::RunTrigger(const char* config, const char* detectors)
a5a091ce 894{
895 // run the trigger
896
99c136e1 897 AliCodeTimerAuto("",0)
a5a091ce 898
795e4a22 899 // initialize CDB storage from external environment
900 // (either CDB manager or AliSimulation setters),
901 // if not already done in RunSimulation()
902 InitCDB();
903
904 // Set run number in CDBManager from data
905 // From this point on the run number must be always loaded from data!
906 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
907
908 // Set CDB lock: from now on it is forbidden to reset the run number
909 // or the default storage or to activate any further storage!
910 SetCDBLock();
911
bacbe0fd 912 AliRunLoader* runLoader = LoadRun("READ");
913 if (!runLoader) return kFALSE;
51f6d619 914 TString trconfiguration = config;
bacbe0fd 915
51f6d619 916 if (trconfiguration.IsNull()) {
28da60d3 917 if(!fTriggerConfig.IsNull()) {
918 trconfiguration = fTriggerConfig;
087426de 919 }
51f6d619 920 else
8480396b 921 AliWarning("No trigger descriptor is specified. Loading the one that is in the CDB.");
087426de 922 }
923
0f46f5fa 924 runLoader->MakeTree( "GG" );
bacbe0fd 925 AliCentralTrigger* aCTP = runLoader->GetTrigger();
51f6d619 926 // Load Configuration
927 if (!aCTP->LoadConfiguration( trconfiguration ))
928 return kFALSE;
a5a091ce 929
51f6d619 930 // digits -> trigger
8480396b 931 if( !aCTP->RunTrigger( runLoader , detectors ) ) {
a5a091ce 932 if (fStopOnError) {
51f6d619 933 // delete aCTP;
934 return kFALSE;
a5a091ce 935 }
bacbe0fd 936 }
a5a091ce 937
bacbe0fd 938 delete runLoader;
a5a091ce 939
bacbe0fd 940 return kTRUE;
a5a091ce 941}
942
007155cc 943//_____________________________________________________________________________
944Bool_t AliSimulation::WriteTriggerRawData()
945{
946 // Writes the CTP (trigger) DDL raw data
947 // Details of the format are given in the
948 // trigger TDR - pages 134 and 135.
949 AliCTPRawData writer;
950 writer.RawData();
a5a091ce 951
007155cc 952 return kTRUE;
953}
a5a091ce 954
85a5290f 955//_____________________________________________________________________________
95601147 956Bool_t AliSimulation::RunSimulation(Int_t nEvents)
85a5290f 957{
958// run the generation and simulation
959
99c136e1 960 AliCodeTimerAuto("",0)
4df28b43 961
795e4a22 962 // initialize CDB storage and run number from external environment
963 // (either CDB manager or AliSimulation setters)
6fcf567c 964 AliSysInfo::AddStamp("RunSimulation_Begin");
795e4a22 965 InitCDB();
6fcf567c 966 AliSysInfo::AddStamp("RunSimulation_InitCDB");
795e4a22 967 InitRunNumber();
968 SetCDBLock();
6fcf567c 969 AliSysInfo::AddStamp("RunSimulation_SetCDBLock");
795e4a22 970
95601147 971 if (!gAlice) {
ac1671c0 972 AliError("no gAlice object. Restart aliroot and try again.");
95601147 973 return kFALSE;
974 }
975 if (gAlice->Modules()->GetEntries() > 0) {
ac1671c0 976 AliError("gAlice was already run. Restart aliroot and try again.");
95601147 977 return kFALSE;
978 }
979
ac1671c0 980 AliInfo(Form("initializing gAlice with config file %s",
981 fConfigFileName.Data()));
3e2e3ece 982
983 //
984 // Initialize ALICE Simulation run
985 //
986
987 gAlice->Announce();
988
989 gROOT->LoadMacro(fConfigFileName.Data());
990 gInterpreter->ProcessLine(gAlice->GetConfigFunction());
6fcf567c 991 AliSysInfo::AddStamp("RunSimulation_Config");
3e2e3ece 992
993 if(AliCDBManager::Instance()->GetRun() >= 0) {
33c3c91a 994 AliRunLoader::Instance()->SetRunNumber(AliCDBManager::Instance()->GetRun());
c516e34c 995 AliRunLoader::Instance()->SetNumberOfEventsPerRun(fNEvents);
3e2e3ece 996 } else {
997 AliWarning("Run number not initialized!!");
998 }
999
33c3c91a 1000 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 1001
1002 AliPDG::AddParticlesToPdgDataBase();
1003
f7a1cc68 1004 gMC->SetMagField(TGeoGlobalMagField::Instance()->GetField());
6fcf567c 1005 AliSysInfo::AddStamp("RunSimulation_GetField");
3e2e3ece 1006
55338a9a 1007 gAlice->GetMCApp()->Init();
1008 AliSysInfo::AddStamp("RunSimulation_InitMCApp");
1009
3e2e3ece 1010 //Must be here because some MCs (G4) adds detectors here and not in Config.C
1011 gAlice->InitLoaders();
33c3c91a 1012 AliRunLoader::Instance()->MakeTree("E");
1013 AliRunLoader::Instance()->LoadKinematics("RECREATE");
1014 AliRunLoader::Instance()->LoadTrackRefs("RECREATE");
1015 AliRunLoader::Instance()->LoadHits("all","RECREATE");
3e2e3ece 1016 //
1017 // Save stuff at the beginning of the file to avoid file corruption
33c3c91a 1018 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 1019 gAlice->Write();
1020 gAlice->SetEventNrInRun(-1); //important - we start Begin event from increasing current number in run
6fcf567c 1021 AliSysInfo::AddStamp("RunSimulation_InitLoaders");
3e2e3ece 1022 //___________________________________________________________________________________________
795e4a22 1023
6fcf567c 1024 AliSysInfo::AddStamp("RunSimulation_TriggerDescriptor");
087426de 1025
6bae477a 1026 // Set run number in CDBManager
024cf675 1027 AliInfo(Form("Run number: %d",AliCDBManager::Instance()->GetRun()));
1028
33c3c91a 1029 AliRunLoader* runLoader = AliRunLoader::Instance();
024cf675 1030 if (!runLoader) {
1031 AliError(Form("gAlice has no run loader object. "
1032 "Check your config file: %s", fConfigFileName.Data()));
1033 return kFALSE;
1034 }
1035 SetGAliceFile(runLoader->GetFileName());
795e4a22 1036
6bae477a 1037 // Misalign geometry
caf9c464 1038#if ROOT_VERSION_CODE < 331527
74ae4297 1039 AliGeomManager::SetGeometry(gGeoManager);
ff5970a3 1040
1041 // Check that the consistency of symbolic names for the activated subdetectors
1042 // in the geometry loaded by AliGeomManager
1043 TString detsToBeChecked = "";
1044 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
1045 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1046 AliModule* det = (AliModule*) detArray->At(iDet);
1047 if (!det || !det->IsActive()) continue;
1048 detsToBeChecked += det->GetName();
1049 detsToBeChecked += " ";
1050 } // end loop over detectors
1051 if(!AliGeomManager::CheckSymNamesLUT(detsToBeChecked.Data()))
0bf7aade 1052 AliFatalClass("Current loaded geometry differs in the definition of symbolic names!");
caf9c464 1053 MisalignGeometry(runLoader);
6fcf567c 1054 AliSysInfo::AddStamp("RunSimulation_MisalignGeometry");
caf9c464 1055#endif
995ad051 1056
33c3c91a 1057// AliRunLoader* runLoader = AliRunLoader::Instance();
024cf675 1058// if (!runLoader) {
1059// AliError(Form("gAlice has no run loader object. "
1060// "Check your config file: %s", fConfigFileName.Data()));
1061// return kFALSE;
1062// }
1063// SetGAliceFile(runLoader->GetFileName());
85a5290f 1064
3e2e3ece 1065 if (!gAlice->GetMCApp()->Generator()) {
ac1671c0 1066 AliError(Form("gAlice has no generator object. "
1067 "Check your config file: %s", fConfigFileName.Data()));
04bae0a0 1068 return kFALSE;
1069 }
fc7e1b1c 1070
1071 // Write GRP entry corresponding to the setting found in Cofig.C
1072 if (fWriteGRPEntry)
1073 WriteGRPEntry();
6fcf567c 1074 AliSysInfo::AddStamp("RunSimulation_WriteGRP");
fc7e1b1c 1075
05526d44 1076 if (nEvents <= 0) nEvents = fNEvents;
04bae0a0 1077
1078 // get vertex from background file in case of merging
1079 if (fUseBkgrdVertex &&
1080 fBkgrdFileNames && (fBkgrdFileNames->GetEntriesFast() > 0)) {
05526d44 1081 Int_t signalPerBkgrd = GetNSignalPerBkgrd(nEvents);
04bae0a0 1082 const char* fileName = ((TObjString*)
1083 (fBkgrdFileNames->At(0)))->GetName();
ac1671c0 1084 AliInfo(Form("The vertex will be taken from the background "
1085 "file %s with nSignalPerBackground = %d",
1086 fileName, signalPerBkgrd));
04bae0a0 1087 AliVertexGenFile* vtxGen = new AliVertexGenFile(fileName, signalPerBkgrd);
3e2e3ece 1088 gAlice->GetMCApp()->Generator()->SetVertexGenerator(vtxGen);
04bae0a0 1089 }
1090
85a5290f 1091 if (!fRunSimulation) {
3e2e3ece 1092 gAlice->GetMCApp()->Generator()->SetTrackingFlag(0);
85a5290f 1093 }
1094
18b43626 1095 // set the number of events per file for given detectors and data types
1096 for (Int_t i = 0; i < fEventsPerFile.GetEntriesFast(); i++) {
1097 if (!fEventsPerFile[i]) continue;
1098 const char* detName = fEventsPerFile[i]->GetName();
1099 const char* typeName = fEventsPerFile[i]->GetTitle();
1100 TString loaderName(detName);
1101 loaderName += "Loader";
1102 AliLoader* loader = runLoader->GetLoader(loaderName);
1103 if (!loader) {
ac1671c0 1104 AliError(Form("RunSimulation", "no loader for %s found\n"
1105 "Number of events per file not set for %s %s",
1106 detName, typeName, detName));
18b43626 1107 continue;
1108 }
1109 AliDataLoader* dataLoader =
1110 loader->GetDataLoader(typeName);
1111 if (!dataLoader) {
ac1671c0 1112 AliError(Form("no data loader for %s found\n"
1113 "Number of events per file not set for %s %s",
1114 typeName, detName, typeName));
18b43626 1115 continue;
1116 }
1117 dataLoader->SetNumberOfEventsPerFile(fEventsPerFile[i]->GetUniqueID());
ac1671c0 1118 AliDebug(1, Form("number of events per file set to %d for %s %s",
1119 fEventsPerFile[i]->GetUniqueID(), detName, typeName));
18b43626 1120 }
1121
ac1671c0 1122 AliInfo("running gAlice");
6fcf567c 1123 AliSysInfo::AddStamp("Start_ProcessRun");
124253ee 1124
124253ee 1125 // Create the Root Tree with one branch per detector
1126 //Hits moved to begin event -> now we are crating separate tree for each event
1127
1128 gMC->ProcessRun(nEvents);
1129
1130 // End of this run, close files
3e2e3ece 1131 if(nEvents>0) FinishRun();
124253ee 1132
6fcf567c 1133 AliSysInfo::AddStamp("Stop_ProcessRun");
95601147 1134 delete runLoader;
85a5290f 1135
1136 return kTRUE;
1137}
1138
1139//_____________________________________________________________________________
95601147 1140Bool_t AliSimulation::RunSDigitization(const char* detectors)
85a5290f 1141{
1142// run the digitization and produce summable digits
27fc67fa 1143 static Int_t eventNr=0;
99c136e1 1144 AliCodeTimerAuto("",0) ;
4df28b43 1145
795e4a22 1146 // initialize CDB storage, run number, set CDB lock
1147 InitCDB();
1148 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
1149 SetCDBLock();
1150
95601147 1151 AliRunLoader* runLoader = LoadRun();
1152 if (!runLoader) return kFALSE;
1153
85a5290f 1154 TString detStr = detectors;
95601147 1155 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
85a5290f 1156 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1157 AliModule* det = (AliModule*) detArray->At(iDet);
1158 if (!det || !det->IsActive()) continue;
1159 if (IsSelected(det->GetName(), detStr)) {
ac1671c0 1160 AliInfo(Form("creating summable digits for %s", det->GetName()));
a899e40b 1161 AliCodeTimerStart(Form("creating summable digits for %s", det->GetName()));
85a5290f 1162 det->Hits2SDigits();
a899e40b 1163 AliCodeTimerStop(Form("creating summable digits for %s", det->GetName()));
27fc67fa 1164 AliSysInfo::AddStamp(Form("Digit_%s_%d",det->GetName(),eventNr), 0,1, eventNr);
85a5290f 1165 }
1166 }
1167
1168 if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) {
ac1671c0 1169 AliError(Form("the following detectors were not found: %s",
1170 detStr.Data()));
85a5290f 1171 if (fStopOnError) return kFALSE;
1172 }
27fc67fa 1173 eventNr++;
95601147 1174 delete runLoader;
1175
85a5290f 1176 return kTRUE;
1177}
1178
1179
1180//_____________________________________________________________________________
95601147 1181Bool_t AliSimulation::RunDigitization(const char* detectors,
1182 const char* excludeDetectors)
85a5290f 1183{
1184// run the digitization and produce digits from sdigits
1185
99c136e1 1186 AliCodeTimerAuto("",0)
4df28b43 1187
795e4a22 1188 // initialize CDB storage, run number, set CDB lock
1189 InitCDB();
1190 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
1191 SetCDBLock();
1192
33c3c91a 1193 delete AliRunLoader::Instance();
124253ee 1194 delete gAlice;
95601147 1195 gAlice = NULL;
1196
1197 Int_t nStreams = 1;
05526d44 1198 if (fBkgrdFileNames) nStreams = fBkgrdFileNames->GetEntriesFast() + 1;
1199 Int_t signalPerBkgrd = GetNSignalPerBkgrd();
85a5290f 1200 AliRunDigitizer* manager = new AliRunDigitizer(nStreams, signalPerBkgrd);
ca30848f 1201 // manager->SetEmbeddingFlag(fEmbeddingFlag);
85a5290f 1202 manager->SetInputStream(0, fGAliceFileName.Data());
1203 for (Int_t iStream = 1; iStream < nStreams; iStream++) {
1204 const char* fileName = ((TObjString*)
1205 (fBkgrdFileNames->At(iStream-1)))->GetName();
1206 manager->SetInputStream(iStream, fileName);
1207 }
1208
1209 TString detStr = detectors;
1210 TString detExcl = excludeDetectors;
95601147 1211 manager->GetInputStream(0)->ImportgAlice();
1212 AliRunLoader* runLoader =
1213 AliRunLoader::GetRunLoader(manager->GetInputStream(0)->GetFolderName());
1214 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
85a5290f 1215 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1216 AliModule* det = (AliModule*) detArray->At(iDet);
1217 if (!det || !det->IsActive()) continue;
1218 if (IsSelected(det->GetName(), detStr) &&
1219 !IsSelected(det->GetName(), detExcl)) {
4df28b43 1220 AliDigitizer* digitizer = det->CreateDigitizer(manager);
ca30848f 1221
4df28b43 1222 if (!digitizer) {
ac1671c0 1223 AliError(Form("no digitizer for %s", det->GetName()));
85a5290f 1224 if (fStopOnError) return kFALSE;
4df28b43 1225 } else {
1226 digitizer->SetRegionOfInterest(fRegionOfInterest);
85a5290f 1227 }
1228 }
1229 }
1230
1231 if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) {
ac1671c0 1232 AliError(Form("the following detectors were not found: %s",
1233 detStr.Data()));
85a5290f 1234 if (fStopOnError) return kFALSE;
1235 }
1236
1237 if (!manager->GetListOfTasks()->IsEmpty()) {
ac1671c0 1238 AliInfo("executing digitization");
85a5290f 1239 manager->Exec("");
1240 }
95601147 1241
85a5290f 1242 delete manager;
1243
1244 return kTRUE;
1245}
1246
1247//_____________________________________________________________________________
95601147 1248Bool_t AliSimulation::RunHitsDigitization(const char* detectors)
85a5290f 1249{
1250// run the digitization and produce digits from hits
1251
99c136e1 1252 AliCodeTimerAuto("",0)
4df28b43 1253
795e4a22 1254 // initialize CDB storage, run number, set CDB lock
1255 InitCDB();
1256 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
1257 SetCDBLock();
1258
591f51bb 1259 AliRunLoader* runLoader = LoadRun("READ");
95601147 1260 if (!runLoader) return kFALSE;
1261
85a5290f 1262 TString detStr = detectors;
95601147 1263 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
85a5290f 1264 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1265 AliModule* det = (AliModule*) detArray->At(iDet);
1266 if (!det || !det->IsActive()) continue;
1267 if (IsSelected(det->GetName(), detStr)) {
ac1671c0 1268 AliInfo(Form("creating digits from hits for %s", det->GetName()));
85a5290f 1269 det->Hits2Digits();
1270 }
1271 }
1272
1273 if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) {
ac1671c0 1274 AliError(Form("the following detectors were not found: %s",
1275 detStr.Data()));
85a5290f 1276 if (fStopOnError) return kFALSE;
1277 }
1278
1279 return kTRUE;
1280}
1281
0421c3d1 1282//_____________________________________________________________________________
06c7e392 1283Bool_t AliSimulation::WriteRawData(const char* detectors,
1284 const char* fileName,
67327b72 1285 Bool_t deleteIntermediateFiles,
1286 Bool_t selrawdata)
0421c3d1 1287{
1288// convert the digits to raw data
06c7e392 1289// First DDL raw data files for the given detectors are created.
1290// If a file name is given, the DDL files are then converted to a DATE file.
1291// If deleteIntermediateFiles is true, the DDL raw files are deleted
1292// afterwards.
1293// If the file name has the extension ".root", the DATE file is converted
1294// to a root file.
1295// If deleteIntermediateFiles is true, the DATE file is deleted afterwards.
67327b72 1296// 'selrawdata' flag can be used to enable writing of detectors raw data
1297// accoring to the trigger cluster.
0421c3d1 1298
99c136e1 1299 AliCodeTimerAuto("",0)
6fcf567c 1300 AliSysInfo::AddStamp("WriteRawData_Start");
4cce3e4e 1301
1302 TString detStr = detectors;
4cce3e4e 1303 if (!WriteRawFiles(detStr.Data())) {
06c7e392 1304 if (fStopOnError) return kFALSE;
1305 }
6fcf567c 1306 AliSysInfo::AddStamp("WriteRawFiles");
06c7e392 1307
5f6d0c0d 1308 // run HLT simulation on simulated DDL raw files
1309 // and produce HLT ddl raw files to be included in date/root file
c4affb19 1310 // bugfix 2009-06-26: the decision whether to write HLT raw data
1311 // is taken in RunHLT. Here HLT always needs to be run in order to
1312 // create HLT digits, unless its switched off. This is due to the
1313 // special placement of the HLT between the generation of DDL files
1314 // and conversion to DATE/Root file.
1315 detStr.ReplaceAll("HLT", "");
1316 if (!fRunHLT.IsNull()) {
5f6d0c0d 1317 if (!RunHLT()) {
1318 if (fStopOnError) return kFALSE;
1319 }
1320 }
6fcf567c 1321 AliSysInfo::AddStamp("WriteRawData_RunHLT");
5f6d0c0d 1322
06c7e392 1323 TString dateFileName(fileName);
1324 if (!dateFileName.IsNull()) {
1325 Bool_t rootOutput = dateFileName.EndsWith(".root");
1326 if (rootOutput) dateFileName += ".date";
67327b72 1327 TString selDateFileName;
1328 if (selrawdata) {
1329 selDateFileName = "selected.";
1330 selDateFileName+= dateFileName;
1331 }
1332 if (!ConvertRawFilesToDate(dateFileName,selDateFileName)) {
06c7e392 1333 if (fStopOnError) return kFALSE;
1334 }
6fcf567c 1335 AliSysInfo::AddStamp("ConvertRawFilesToDate");
06c7e392 1336 if (deleteIntermediateFiles) {
1337 AliRunLoader* runLoader = LoadRun("READ");
1338 if (runLoader) for (Int_t iEvent = 0;
1339 iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
1340 char command[256];
1341 sprintf(command, "rm -r raw%d", iEvent);
1342 gSystem->Exec(command);
1343 }
a978141c 1344 delete runLoader;
06c7e392 1345 }
1346
1347 if (rootOutput) {
1348 if (!ConvertDateToRoot(dateFileName, fileName)) {
1349 if (fStopOnError) return kFALSE;
1350 }
6fcf567c 1351 AliSysInfo::AddStamp("ConvertDateToRoot");
06c7e392 1352 if (deleteIntermediateFiles) {
1353 gSystem->Unlink(dateFileName);
1354 }
67327b72 1355 if (selrawdata) {
1356 TString selFileName = "selected.";
1357 selFileName += fileName;
1358 if (!ConvertDateToRoot(selDateFileName, selFileName)) {
1359 if (fStopOnError) return kFALSE;
1360 }
1361 if (deleteIntermediateFiles) {
1362 gSystem->Unlink(selDateFileName);
1363 }
1364 }
06c7e392 1365 }
1366 }
1367
06c7e392 1368 return kTRUE;
1369}
1370
1371//_____________________________________________________________________________
1372Bool_t AliSimulation::WriteRawFiles(const char* detectors)
1373{
1374// convert the digits to raw data DDL files
1375
99c136e1 1376 AliCodeTimerAuto("",0)
87932dab 1377
06c7e392 1378 AliRunLoader* runLoader = LoadRun("READ");
0421c3d1 1379 if (!runLoader) return kFALSE;
1380
06c7e392 1381 // write raw data to DDL files
0421c3d1 1382 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
ac1671c0 1383 AliInfo(Form("processing event %d", iEvent));
0421c3d1 1384 runLoader->GetEvent(iEvent);
1385 TString baseDir = gSystem->WorkingDirectory();
1386 char dirName[256];
1387 sprintf(dirName, "raw%d", iEvent);
1388 gSystem->MakeDirectory(dirName);
1389 if (!gSystem->ChangeDirectory(dirName)) {
ac1671c0 1390 AliError(Form("couldn't change to directory %s", dirName));
0421c3d1 1391 if (fStopOnError) return kFALSE; else continue;
1392 }
1393
3fbd60fe 1394 ofstream runNbFile(Form("run%u",runLoader->GetHeader()->GetRun()));
1395 runNbFile.close();
1396
0421c3d1 1397 TString detStr = detectors;
5f6d0c0d 1398 if (IsSelected("HLT", detStr)) {
1399 // Do nothing. "HLT" will be removed from detStr and HLT raw
1400 // data files are generated in RunHLT.
1401 }
1402
0421c3d1 1403 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
1404 for (Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1405 AliModule* det = (AliModule*) detArray->At(iDet);
1406 if (!det || !det->IsActive()) continue;
1407 if (IsSelected(det->GetName(), detStr)) {
ac1671c0 1408 AliInfo(Form("creating raw data from digits for %s", det->GetName()));
0421c3d1 1409 det->Digits2Raw();
1410 }
1411 }
1412
007155cc 1413 if (!WriteTriggerRawData())
1414 if (fStopOnError) return kFALSE;
1415
0421c3d1 1416 gSystem->ChangeDirectory(baseDir);
1417 if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) {
ac1671c0 1418 AliError(Form("the following detectors were not found: %s",
1419 detStr.Data()));
0421c3d1 1420 if (fStopOnError) return kFALSE;
1421 }
1422 }
1423
1424 delete runLoader;
87932dab 1425
06c7e392 1426 return kTRUE;
1427}
0421c3d1 1428
06c7e392 1429//_____________________________________________________________________________
67327b72 1430Bool_t AliSimulation::ConvertRawFilesToDate(const char* dateFileName,
1431 const char* selDateFileName)
06c7e392 1432{
1433// convert raw data DDL files to a DATE file with the program "dateStream"
67327b72 1434// The second argument is not empty when the user decides to write
1435// the detectors raw data according to the trigger cluster.
06c7e392 1436
99c136e1 1437 AliCodeTimerAuto("",0)
87932dab 1438
06c7e392 1439 char* path = gSystem->Which(gSystem->Getenv("PATH"), "dateStream");
1440 if (!path) {
ac1671c0 1441 AliError("the program dateStream was not found");
06c7e392 1442 if (fStopOnError) return kFALSE;
1443 } else {
1444 delete[] path;
1445 }
0421c3d1 1446
06c7e392 1447 AliRunLoader* runLoader = LoadRun("READ");
1448 if (!runLoader) return kFALSE;
1449
ac1671c0 1450 AliInfo(Form("converting raw data DDL files to DATE file %s", dateFileName));
67327b72 1451 Bool_t selrawdata = kFALSE;
1452 if (strcmp(selDateFileName,"") != 0) selrawdata = kTRUE;
1453
06c7e392 1454 char command[256];
f28a8d2d 1455 // Note the option -s. It is used in order to avoid
1456 // the generation of SOR/EOR events.
f86775a3 1457 sprintf(command, "dateStream -c -s -D -o %s -# %d -C -run %d",
5c0fd670 1458 dateFileName, runLoader->GetNumberOfEvents(),runLoader->GetHeader()->GetRun());
06c7e392 1459 FILE* pipe = gSystem->OpenPipe(command, "w");
1460
f5e7d9d8 1461 if (!pipe) {
1462 AliError(Form("Cannot execute command: %s",command));
1463 return kFALSE;
1464 }
1465
67327b72 1466 Int_t selEvents = 0;
06c7e392 1467 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
06c7e392 1468
f59c50c6 1469 UInt_t detectorPattern = 0;
1470 runLoader->GetEvent(iEvent);
1471 if (!runLoader->LoadTrigger()) {
1472 AliCentralTrigger *aCTP = runLoader->GetTrigger();
1473 detectorPattern = aCTP->GetClusterMask();
67327b72 1474 // Check if the event was triggered by CTP
f59c50c6 1475 if (selrawdata) {
67327b72 1476 if (aCTP->GetClassMask()) selEvents++;
1477 }
f59c50c6 1478 }
1479 else {
1480 AliWarning("No trigger can be loaded! Some fields in the event header will be empty !");
1481 if (selrawdata) {
67327b72 1482 AliWarning("No trigger can be loaded! Writing of selected raw data is abandoned !");
1483 selrawdata = kFALSE;
1484 }
1485 }
1486
f59c50c6 1487 fprintf(pipe, "GDC DetectorPattern %u\n", detectorPattern);
1488 Float_t ldc = 0;
1489 Int_t prevLDC = -1;
1490
06c7e392 1491 // loop over detectors and DDLs
362c9d61 1492 for (Int_t iDet = 0; iDet < AliDAQ::kNDetectors; iDet++) {
1493 for (Int_t iDDL = 0; iDDL < AliDAQ::NumberOfDdls(iDet); iDDL++) {
06c7e392 1494
362c9d61 1495 Int_t ddlID = AliDAQ::DdlID(iDet,iDDL);
06c7e392 1496 Int_t ldcID = Int_t(ldc + 0.0001);
362c9d61 1497 ldc += AliDAQ::NumberOfLdcs(iDet) / AliDAQ::NumberOfDdls(iDet);
06c7e392 1498
1499 char rawFileName[256];
362c9d61 1500 sprintf(rawFileName, "raw%d/%s",
1501 iEvent, AliDAQ::DdlFileName(iDet,iDDL));
06c7e392 1502
1503 // check existence and size of raw data file
1504 FILE* file = fopen(rawFileName, "rb");
1505 if (!file) continue;
1506 fseek(file, 0, SEEK_END);
1507 unsigned long size = ftell(file);
aa04f81b 1508 fclose(file);
1509 if (!size) continue;
06c7e392 1510
1511 if (ldcID != prevLDC) {
1512 fprintf(pipe, " LDC Id %d\n", ldcID);
1513 prevLDC = ldcID;
1514 }
1515 fprintf(pipe, " Equipment Id %d Payload %s\n", ddlID, rawFileName);
1516 }
1517 }
1518 }
1519
1520 Int_t result = gSystem->ClosePipe(pipe);
1521
cf30933c 1522 if (!(selrawdata && selEvents > 0)) {
67327b72 1523 delete runLoader;
1524 return (result == 0);
1525 }
1526
1527 AliInfo(Form("converting selected by trigger cluster raw data DDL files to DATE file %s", selDateFileName));
1528
1529 sprintf(command, "dateStream -c -s -D -o %s -# %d -C -run %d",
1530 selDateFileName,selEvents,runLoader->GetHeader()->GetRun());
1531 FILE* pipe2 = gSystem->OpenPipe(command, "w");
1532
1533 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
1534
1535 // Get the trigger decision and cluster
f59c50c6 1536 UInt_t detectorPattern = 0;
67327b72 1537 TString detClust;
1538 runLoader->GetEvent(iEvent);
1539 if (!runLoader->LoadTrigger()) {
1540 AliCentralTrigger *aCTP = runLoader->GetTrigger();
1541 if (aCTP->GetClassMask() == 0) continue;
f59c50c6 1542 detectorPattern = aCTP->GetClusterMask();
1543 detClust = AliDAQ::ListOfTriggeredDetectors(detectorPattern);
67327b72 1544 AliInfo(Form("List of detectors to be read out: %s",detClust.Data()));
1545 }
1546
f59c50c6 1547 fprintf(pipe2, "GDC DetectorPattern %u\n", detectorPattern);
67327b72 1548 Float_t ldc = 0;
1549 Int_t prevLDC = -1;
1550
1551 // loop over detectors and DDLs
1552 for (Int_t iDet = 0; iDet < AliDAQ::kNDetectors; iDet++) {
1553 // Write only raw data from detectors that
1554 // are contained in the trigger cluster(s)
1555 if (!IsSelected(AliDAQ::DetectorName(iDet),detClust)) continue;
1556
1557 for (Int_t iDDL = 0; iDDL < AliDAQ::NumberOfDdls(iDet); iDDL++) {
1558
1559 Int_t ddlID = AliDAQ::DdlID(iDet,iDDL);
1560 Int_t ldcID = Int_t(ldc + 0.0001);
1561 ldc += AliDAQ::NumberOfLdcs(iDet) / AliDAQ::NumberOfDdls(iDet);
1562
1563 char rawFileName[256];
1564 sprintf(rawFileName, "raw%d/%s",
1565 iEvent, AliDAQ::DdlFileName(iDet,iDDL));
1566
1567 // check existence and size of raw data file
1568 FILE* file = fopen(rawFileName, "rb");
1569 if (!file) continue;
1570 fseek(file, 0, SEEK_END);
1571 unsigned long size = ftell(file);
1572 fclose(file);
1573 if (!size) continue;
1574
1575 if (ldcID != prevLDC) {
1576 fprintf(pipe2, " LDC Id %d\n", ldcID);
1577 prevLDC = ldcID;
1578 }
1579 fprintf(pipe2, " Equipment Id %d Payload %s\n", ddlID, rawFileName);
1580 }
1581 }
1582 }
1583
1584 Int_t result2 = gSystem->ClosePipe(pipe2);
1585
06c7e392 1586 delete runLoader;
67327b72 1587 return ((result == 0) && (result2 == 0));
06c7e392 1588}
1589
1590//_____________________________________________________________________________
1591Bool_t AliSimulation::ConvertDateToRoot(const char* dateFileName,
1592 const char* rootFileName)
1593{
1594// convert a DATE file to a root file with the program "alimdc"
1595
1596 // ALIMDC setup
f28a8d2d 1597 const Int_t kDBSize = 2000000000;
c83eb8f4 1598 const Int_t kTagDBSize = 1000000000;
06c7e392 1599 const Bool_t kFilter = kFALSE;
8ec1d12b 1600 const Int_t kCompression = 1;
06c7e392 1601
1602 char* path = gSystem->Which(gSystem->Getenv("PATH"), "alimdc");
1603 if (!path) {
ac1671c0 1604 AliError("the program alimdc was not found");
06c7e392 1605 if (fStopOnError) return kFALSE;
1606 } else {
1607 delete[] path;
1608 }
1609
ac1671c0 1610 AliInfo(Form("converting DATE file %s to root file %s",
1611 dateFileName, rootFileName));
06c7e392 1612
f732bd7d 1613 const char* rawDBFS[2] = { "/tmp/mdc1", "/tmp/mdc2" };
1614 const char* tagDBFS = "/tmp/mdc1/tags";
f732bd7d 1615
1616 // User defined file system locations
1617 if (gSystem->Getenv("ALIMDC_RAWDB1"))
1618 rawDBFS[0] = gSystem->Getenv("ALIMDC_RAWDB1");
1619 if (gSystem->Getenv("ALIMDC_RAWDB2"))
1620 rawDBFS[1] = gSystem->Getenv("ALIMDC_RAWDB2");
1621 if (gSystem->Getenv("ALIMDC_TAGDB"))
1622 tagDBFS = gSystem->Getenv("ALIMDC_TAGDB");
f732bd7d 1623
1624 gSystem->Exec(Form("rm -rf %s",rawDBFS[0]));
1625 gSystem->Exec(Form("rm -rf %s",rawDBFS[1]));
1626 gSystem->Exec(Form("rm -rf %s",tagDBFS));
f732bd7d 1627
1628 gSystem->Exec(Form("mkdir %s",rawDBFS[0]));
1629 gSystem->Exec(Form("mkdir %s",rawDBFS[1]));
1630 gSystem->Exec(Form("mkdir %s",tagDBFS));
f732bd7d 1631
1632 Int_t result = gSystem->Exec(Form("alimdc %d %d %d %d %s",
1633 kDBSize, kTagDBSize, kFilter, kCompression, dateFileName));
1634 gSystem->Exec(Form("mv %s/*.root %s", rawDBFS[0], rootFileName));
1635
1636 gSystem->Exec(Form("rm -rf %s",rawDBFS[0]));
1637 gSystem->Exec(Form("rm -rf %s",rawDBFS[1]));
1638 gSystem->Exec(Form("rm -rf %s",tagDBFS));
06c7e392 1639
1640 return (result == 0);
0421c3d1 1641}
1642
85a5290f 1643
95601147 1644//_____________________________________________________________________________
06c7e392 1645AliRunLoader* AliSimulation::LoadRun(const char* mode) const
95601147 1646{
1647// delete existing run loaders, open a new one and load gAlice
1648
33c3c91a 1649 delete AliRunLoader::Instance();
95601147 1650 AliRunLoader* runLoader =
1651 AliRunLoader::Open(fGAliceFileName.Data(),
06c7e392 1652 AliConfig::GetDefaultEventFolderName(), mode);
95601147 1653 if (!runLoader) {
ac1671c0 1654 AliError(Form("no run loader found in file %s", fGAliceFileName.Data()));
95601147 1655 return NULL;
1656 }
1657 runLoader->LoadgAlice();
795e4a22 1658 runLoader->LoadHeader();
95601147 1659 gAlice = runLoader->GetAliRun();
1660 if (!gAlice) {
ac1671c0 1661 AliError(Form("no gAlice object found in file %s",
1662 fGAliceFileName.Data()));
95601147 1663 return NULL;
1664 }
1665 return runLoader;
1666}
1667
85a5290f 1668//_____________________________________________________________________________
05526d44 1669Int_t AliSimulation::GetNSignalPerBkgrd(Int_t nEvents) const
1670{
1671// get or calculate the number of signal events per background event
1672
1673 if (!fBkgrdFileNames) return 1;
1674 Int_t nBkgrdFiles = fBkgrdFileNames->GetEntriesFast();
1675 if (nBkgrdFiles == 0) return 1;
1676
1677 // get the number of signal events
1678 if (nEvents <= 0) {
1679 AliRunLoader* runLoader =
ca30848f 1680 AliRunLoader::Open(fGAliceFileName.Data(), "SIGNAL");
05526d44 1681 if (!runLoader) return 1;
ca30848f 1682
05526d44 1683 nEvents = runLoader->GetNumberOfEvents();
1684 delete runLoader;
1685 }
1686
1687 Int_t result = 0;
1688 for (Int_t iBkgrdFile = 0; iBkgrdFile < nBkgrdFiles; iBkgrdFile++) {
1689 // get the number of background events
1690 const char* fileName = ((TObjString*)
1691 (fBkgrdFileNames->At(iBkgrdFile)))->GetName();
ca30848f 1692 AliRunLoader* runLoader =
05526d44 1693 AliRunLoader::Open(fileName, "BKGRD");
1694 if (!runLoader) continue;
1695 Int_t nBkgrdEvents = runLoader->GetNumberOfEvents();
1696 delete runLoader;
ca30848f 1697
05526d44 1698 // get or calculate the number of signal per background events
1699 Int_t nSignalPerBkgrd = fBkgrdFileNames->At(iBkgrdFile)->GetUniqueID();
1700 if (nSignalPerBkgrd <= 0) {
1701 nSignalPerBkgrd = (nEvents-1) / nBkgrdEvents + 1;
1702 } else if (result && (result != nSignalPerBkgrd)) {
ac1671c0 1703 AliInfo(Form("the number of signal events per background event "
1704 "will be changed from %d to %d for stream %d",
1705 nSignalPerBkgrd, result, iBkgrdFile+1));
05526d44 1706 nSignalPerBkgrd = result;
1707 }
1708
1709 if (!result) result = nSignalPerBkgrd;
1710 if (nSignalPerBkgrd * nBkgrdEvents < nEvents) {
ac1671c0 1711 AliWarning(Form("not enough background events (%d) for %d signal events "
1712 "using %d signal per background events for stream %d",
1713 nBkgrdEvents, nEvents, nSignalPerBkgrd, iBkgrdFile+1));
05526d44 1714 }
1715 }
1716
1717 return result;
1718}
1719
1720//_____________________________________________________________________________
85a5290f 1721Bool_t AliSimulation::IsSelected(TString detName, TString& detectors) const
1722{
1723// check whether detName is contained in detectors
1724// if yes, it is removed from detectors
1725
1726 // check if all detectors are selected
1727 if ((detectors.CompareTo("ALL") == 0) ||
1728 detectors.BeginsWith("ALL ") ||
1729 detectors.EndsWith(" ALL") ||
1730 detectors.Contains(" ALL ")) {
1731 detectors = "ALL";
1732 return kTRUE;
1733 }
1734
1735 // search for the given detector
1736 Bool_t result = kFALSE;
1737 if ((detectors.CompareTo(detName) == 0) ||
1738 detectors.BeginsWith(detName+" ") ||
1739 detectors.EndsWith(" "+detName) ||
1740 detectors.Contains(" "+detName+" ")) {
1741 detectors.ReplaceAll(detName, "");
1742 result = kTRUE;
1743 }
1744
1745 // clean up the detectors string
1746 while (detectors.Contains(" ")) detectors.ReplaceAll(" ", " ");
1747 while (detectors.BeginsWith(" ")) detectors.Remove(0, 1);
1748 while (detectors.EndsWith(" ")) detectors.Remove(detectors.Length()-1, 1);
1749
1750 return result;
1751}
ca30848f 1752
795e4a22 1753//_____________________________________________________________________________
ca30848f 1754Bool_t AliSimulation::ConvertRaw2SDigits(const char* rawDirectory, const char* esdFileName)
1755{
1756//
1757// Steering routine to convert raw data in directory rawDirectory/ to fake SDigits.
1758// These can be used for embedding of MC tracks into RAW data using the standard
1759// merging procedure.
1760//
1761// If an ESD file is given the reconstructed vertex is taken from it and stored in the event header.
1762//
3e2e3ece 1763 if (!gAlice) {
1764 AliError("no gAlice object. Restart aliroot and try again.");
1765 return kFALSE;
1766 }
1767 if (gAlice->Modules()->GetEntries() > 0) {
1768 AliError("gAlice was already run. Restart aliroot and try again.");
1769 return kFALSE;
1770 }
1771
1772 AliInfo(Form("initializing gAlice with config file %s",fConfigFileName.Data()));
1773
1774 gAlice->Announce();
1775
1776 gROOT->LoadMacro(fConfigFileName.Data());
1777 gInterpreter->ProcessLine(gAlice->GetConfigFunction());
1778
1779 if(AliCDBManager::Instance()->GetRun() >= 0) {
1780 SetRunNumber(AliCDBManager::Instance()->GetRun());
1781 } else {
1782 AliWarning("Run number not initialized!!");
1783 }
1784
33c3c91a 1785 AliRunLoader::Instance()->CdGAFile();
ca30848f 1786
3e2e3ece 1787 AliPDG::AddParticlesToPdgDataBase();
1788
f7a1cc68 1789 gMC->SetMagField(TGeoGlobalMagField::Instance()->GetField());
3e2e3ece 1790
55338a9a 1791 gAlice->GetMCApp()->Init();
1792
3e2e3ece 1793 //Must be here because some MCs (G4) adds detectors here and not in Config.C
1794 gAlice->InitLoaders();
33c3c91a 1795 AliRunLoader::Instance()->MakeTree("E");
1796 AliRunLoader::Instance()->LoadKinematics("RECREATE");
1797 AliRunLoader::Instance()->LoadTrackRefs("RECREATE");
1798 AliRunLoader::Instance()->LoadHits("all","RECREATE");
3e2e3ece 1799 //
1800 // Save stuff at the beginning of the file to avoid file corruption
33c3c91a 1801 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 1802 gAlice->Write();
ca30848f 1803//
1804// Initialize CDB
795e4a22 1805 InitCDB();
1806 //AliCDBManager* man = AliCDBManager::Instance();
1807 //man->SetRun(0); // Should this come from rawdata header ?
ca30848f 1808
1809 Int_t iDet;
1810 //
1811 // Get the runloader
33c3c91a 1812 AliRunLoader* runLoader = AliRunLoader::Instance();
ca30848f 1813 //
1814 // Open esd file if available
1815 TFile* esdFile = TFile::Open(esdFileName);
ca30848f 1816 TTree* treeESD = 0;
6d985680 1817 AliESDEvent* esd = new AliESDEvent();
1818 esdFile->GetObject("esdTree", treeESD);
1819 if (treeESD) esd->ReadFromTree(treeESD);
1820
ca30848f 1821 //
1822 // Create the RawReader
8b31e840 1823 TString fileName(rawDirectory);
1824 AliRawReader* rawReader = 0x0;
1825 if (fileName.EndsWith("/")) {
1826 rawReader = new AliRawReaderFile(fileName);
1827 } else if (fileName.EndsWith(".root")) {
1828 rawReader = new AliRawReaderRoot(fileName);
1829 } else if (!fileName.IsNull()) {
1830 rawReader = new AliRawReaderDate(fileName);
8b31e840 1831 }
1832// if (!fEquipIdMap.IsNull() && fRawReader)
1833// fRawReader->LoadEquipmentIdsMap(fEquipIdMap);
ca30848f 1834 //
1835 // Get list of detectors
1836 TObjArray* detArray = runLoader->GetAliRun()->Detectors();
1837 //
1838 // Get Header
1839 AliHeader* header = runLoader->GetHeader();
1840 //
8b31e840 1841 TString detStr = fMakeSDigits;
ca30848f 1842 // Event loop
1843 Int_t nev = 0;
1844 while(kTRUE) {
1845 if (!(rawReader->NextEvent())) break;
1846 //
1847 // Detector loop
1848 for (iDet = 0; iDet < detArray->GetEntriesFast(); iDet++) {
1849 AliModule* det = (AliModule*) detArray->At(iDet);
8b31e840 1850 if (!det || !det->IsActive()) continue;
1851 if (IsSelected(det->GetName(), detStr)) {
1852 AliInfo(Form("Calling Raw2SDigits for %s\n", det->GetName()));
1853 det->Raw2SDigits(rawReader);
1854 rawReader->Reset();
1855 }
ca30848f 1856 } // detectors
1857
5b188f2f 1858
ca30848f 1859 //
1860 // If ESD information available obtain reconstructed vertex and store in header.
6d985680 1861 if (treeESD) {
ca30848f 1862 treeESD->GetEvent(nev);
1863 const AliESDVertex* esdVertex = esd->GetPrimaryVertex();
1864 Double_t position[3];
1865 esdVertex->GetXYZ(position);
1866 AliGenEventHeader* mcHeader = new AliGenEventHeader("ESD");
1867 TArrayF mcV;
1868 mcV.Set(3);
1869 for (Int_t i = 0; i < 3; i++) mcV[i] = position[i];
1870 mcHeader->SetPrimaryVertex(mcV);
1871 header->Reset(0,nev);
1872 header->SetGenEventHeader(mcHeader);
1873 printf("***** Saved vertex %f %f %f \n", position[0], position[1], position[2]);
1874 }
1875 nev++;
1876//
1877// Finish the event
1878 runLoader->TreeE()->Fill();
1879 runLoader->SetNextEvent();
1880 } // events
1881
1882 delete rawReader;
1883//
1884// Finish the run
1885 runLoader->CdGAFile();
1886 runLoader->WriteHeader("OVERWRITE");
1887 runLoader->WriteRunLoader();
1888
1889 return kTRUE;
1890}
5b188f2f 1891
3e2e3ece 1892//_____________________________________________________________________________
1893void AliSimulation::FinishRun()
1894{
1895 //
1896 // Called at the end of the run.
1897 //
1898
1899 if(IsLegoRun())
1900 {
1901 AliDebug(1, "Finish Lego");
33c3c91a 1902 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 1903 fLego->FinishRun();
1904 }
1905
1906 // Clean detector information
1907 TIter next(gAlice->Modules());
1908 AliModule *detector;
1909 while((detector = dynamic_cast<AliModule*>(next()))) {
1910 AliDebug(2, Form("%s->FinishRun()", detector->GetName()));
1911 detector->FinishRun();
1912 }
1913
33c3c91a 1914 AliDebug(1, "AliRunLoader::Instance()->WriteHeader(OVERWRITE)");
1915 AliRunLoader::Instance()->WriteHeader("OVERWRITE");
3e2e3ece 1916
1917 // Write AliRun info and all detectors parameters
33c3c91a 1918 AliRunLoader::Instance()->CdGAFile();
3e2e3ece 1919 gAlice->Write(0,TObject::kOverwrite);//write AliRun
33c3c91a 1920 AliRunLoader::Instance()->Write(0,TObject::kOverwrite);//write RunLoader itself
3e2e3ece 1921
1922 if(gAlice->GetMCApp()) gAlice->GetMCApp()->FinishRun();
33c3c91a 1923 AliRunLoader::Instance()->Synchronize();
3e2e3ece 1924}
1925
5b188f2f 1926//_____________________________________________________________________________
1927Int_t AliSimulation::GetDetIndex(const char* detector)
1928{
1929 // return the detector index corresponding to detector
1930 Int_t index = -1 ;
1931 for (index = 0; index < fgkNDetectors ; index++) {
1932 if ( strcmp(detector, fgkDetectorName[index]) == 0 )
1933 break ;
1934 }
1935 return index ;
1936}
cae21299 1937
c4affb19 1938//_____________________________________________________________________________
1939Bool_t AliSimulation::CreateHLT()
1940{
1941 // Init the HLT simulation.
1942 // The function loads the library and creates the instance of AliHLTSimulation.
1943 // the main reason for the decoupled creation is to set the transient OCDB
1944 // objects before the OCDB is locked
1945
1946 // load the library dynamically
1947 gSystem->Load(ALIHLTSIMULATION_LIBRARY);
1948
1949 // check for the library version
1950 AliHLTSimulationGetLibraryVersion_t fctVersion=(AliHLTSimulationGetLibraryVersion_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_GET_LIBRARY_VERSION));
1951 if (!fctVersion) {
1952 AliError(Form("can not load library %s", ALIHLTSIMULATION_LIBRARY));
1953 return kFALSE;
1954 }
1955 if (fctVersion()!= ALIHLTSIMULATION_LIBRARY_VERSION) {
b682a4ec 1956 AliWarning(Form("%s version does not match: compiled for version %d, loaded %d", ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_LIBRARY_VERSION, fctVersion()));
c4affb19 1957 }
1958
1959 // print compile info
1960 typedef void (*CompileInfo)( const char*& date, const char*& time);
1961 CompileInfo fctInfo=(CompileInfo)gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, "CompileInfo");
1962 if (fctInfo) {
1963 const char* date="";
1964 const char* time="";
1965 (*fctInfo)(date, time);
1966 if (!date) date="unknown";
1967 if (!time) time="unknown";
1968 AliInfo(Form("%s build on %s (%s)", ALIHLTSIMULATION_LIBRARY, date, time));
1969 } else {
1970 AliInfo(Form("no build info available for %s", ALIHLTSIMULATION_LIBRARY));
1971 }
1972
1973 // create instance of the HLT simulation
1974 AliHLTSimulationCreateInstance_t fctCreate=(AliHLTSimulationCreateInstance_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_CREATE_INSTANCE));
1975 if (fctCreate==NULL || (fpHLT=(fctCreate()))==NULL) {
1976 AliError(Form("can not create instance of HLT simulation (creator %p)", fctCreate));
1977 return kFALSE;
1978 }
1979
1980 TString specObjects;
1981 for (Int_t i = 0; i < fSpecCDBUri.GetEntriesFast(); i++) {
1982 if (specObjects.Length()>0) specObjects+=" ";
1983 specObjects+=fSpecCDBUri[i]->GetName();
1984 }
1985
1986 AliHLTSimulationSetup_t fctSetup=(AliHLTSimulationSetup_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_SETUP));
1987 if (fctSetup==NULL || fctSetup(fpHLT, this, specObjects.Data())<0) {
1988 AliWarning(Form("failed to setup HLT simulation (function %p)", fctSetup));
1989 }
1990
1991 return kTRUE;
1992}
1993
cae21299 1994//_____________________________________________________________________________
1995Bool_t AliSimulation::RunHLT()
1996{
1997 // Run the HLT simulation
1998 // HLT simulation is implemented in HLT/sim/AliHLTSimulation
1999 // Disabled if fRunHLT is empty, default vaule is "default".
2000 // AliSimulation::SetRunHLT can be used to set the options for HLT simulation
2001 // The default simulation depends on the HLT component libraries and their
2002 // corresponding agents which define components and chains to run. See
5f6d0c0d 2003 // http://web.ift.uib.no/~kjeks/doc/alice-hlt-current/
2004 // http://web.ift.uib.no/~kjeks/doc/alice-hlt-current/classAliHLTModuleAgent.html
cae21299 2005 //
2006 // The libraries to be loaded can be specified as an option.
2007 // <pre>
2008 // AliSimulation sim;
2009 // sim.SetRunHLT("libAliHLTSample.so");
2010 // </pre>
2011 // will only load <tt>libAliHLTSample.so</tt>
2012
2013 // Other available options:
2014 // \li loglevel=<i>level</i> <br>
2015 // logging level for this processing
2016 // \li alilog=off
2017 // disable redirection of log messages to AliLog class
2018 // \li config=<i>macro</i>
2019 // configuration macro
5f6d0c0d 2020 // \li chains=<i>configuration</i>
cae21299 2021 // comma separated list of configurations to be run during simulation
5f6d0c0d 2022 // \li rawfile=<i>file</i>
2023 // source for the RawReader to be created, the default is <i>./</i> if
2024 // raw data is simulated
cae21299 2025
2026 int iResult=0;
c4affb19 2027
2028 if (!fpHLT && !CreateHLT()) {
2029 return kFALSE;
2030 }
2031 AliHLTSimulation* pHLT=fpHLT;
2032
cae21299 2033 AliRunLoader* pRunLoader = LoadRun("READ");
2034 if (!pRunLoader) return kFALSE;
2035
795e4a22 2036 // initialize CDB storage, run number, set CDB lock
c4affb19 2037 // thats for the case of running HLT simulation without all the other steps
2038 // multiple calls are handled by the function, so we can just call
795e4a22 2039 InitCDB();
2040 if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE;
2041 SetCDBLock();
2042
cae21299 2043 // init the HLT simulation
a441bf51 2044 TString options;
2045 if (fRunHLT.CompareTo("default")!=0) options=fRunHLT;
5f6d0c0d 2046 TString detStr = fWriteRawData;
2047 if (!IsSelected("HLT", detStr)) {
a441bf51 2048 options+=" writerawfiles=";
2049 } else {
2050 options+=" writerawfiles=HLT";
2051 }
5f6d0c0d 2052
2053 if (!detStr.IsNull() && !options.Contains("rawfile=")) {
2054 // as a matter of fact, HLT will run reconstruction and needs the RawReader
2055 // in order to get detector data. By default, RawReaderFile is used to read
2056 // the already simulated ddl files. Date and Root files from the raw data
2057 // are generated after the HLT simulation.
2058 options+=" rawfile=./";
2059 }
2060
cae21299 2061 AliHLTSimulationInit_t fctInit=(AliHLTSimulationInit_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_INIT));
a441bf51 2062 if (fctInit==NULL || (iResult=(fctInit(pHLT, pRunLoader, options.Data())))<0) {
cae21299 2063 AliError(Form("can not init HLT simulation: error %d (init %p)", iResult, fctInit));
2064 } else {
2065 // run the HLT simulation
2066 AliHLTSimulationRun_t fctRun=(AliHLTSimulationRun_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_RUN));
2067 if (fctRun==NULL || (iResult=(fctRun(pHLT, pRunLoader)))<0) {
2068 AliError(Form("can not run HLT simulation: error %d (run %p)", iResult, fctRun));
2069 }
2070 }
2071
2072 // delete the instance
2073 AliHLTSimulationDeleteInstance_t fctDelete=(AliHLTSimulationDeleteInstance_t)(gSystem->DynFindSymbol(ALIHLTSIMULATION_LIBRARY, ALIHLTSIMULATION_DELETE_INSTANCE));
2074 if (fctDelete==NULL || fctDelete(pHLT)<0) {
2075 AliError(Form("can not delete instance of HLT simulation (creator %p)", fctDelete));
2076 }
2077 pHLT=NULL;
2078
2079 return iResult>=0?kTRUE:kFALSE;
2080}
cae17938 2081
2082//_____________________________________________________________________________
a1b90a73 2083Bool_t AliSimulation::RunQA()
cae17938 2084{
a1b90a73 2085 // run the QA on summable hits, digits or digits
940d8e5f 2086
f00f2d9c 2087 if(!gAlice) return kFALSE;
eca4fa66 2088 AliQAManager::QAManager()->SetRunLoader(AliRunLoader::Instance()) ;
a1b90a73 2089
e5dedfe2 2090 TString detectorsw("") ;
2091 Bool_t rv = kTRUE ;
eca4fa66 2092 AliQAManager::QAManager()->SetEventSpecie(fEventSpecie) ;
2093 detectorsw = AliQAManager::QAManager()->Run(fQADetectors.Data()) ;
e5dedfe2 2094 if ( detectorsw.IsNull() )
2095 rv = kFALSE ;
a1b90a73 2096 return rv ;
cae17938 2097}
2098
e3b20d9a 2099//_____________________________________________________________________________
2100Bool_t AliSimulation::SetRunQA(TString detAndAction)
2101{
2102 // Allows to run QA for a selected set of detectors
2103 // and a selected set of tasks among HITS, SDIGITS and DIGITS
2104 // all selected detectors run the same selected tasks
2105
2106 if (!detAndAction.Contains(":")) {
2107 AliError( Form("%s is a wrong syntax, use \"DetectorList:ActionList\" \n", detAndAction.Data()) ) ;
2108 fRunQA = kFALSE ;
2109 return kFALSE ;
2110 }
2111 Int_t colon = detAndAction.Index(":") ;
2112 fQADetectors = detAndAction(0, colon) ;
c54a46e3 2113 if (fQADetectors.Contains("ALL") ){
2114 TString tmp = Form("%s %s", fMakeDigits.Data(), fMakeDigitsFromHits.Data()) ;
2115 Int_t minus = fQADetectors.Last('-') ;
2116 TString toKeep = Form("%s %s", fMakeDigits.Data(), fMakeDigitsFromHits.Data()) ;
2117 TString toRemove("") ;
2118 while (minus >= 0) {
2119 toRemove = fQADetectors(minus+1, fQADetectors.Length()) ;
2120 toRemove = toRemove.Strip() ;
2121 toKeep.ReplaceAll(toRemove, "") ;
2122 fQADetectors.ReplaceAll(Form("-%s", toRemove.Data()), "") ;
2123 minus = fQADetectors.Last('-') ;
2124 }
2125 fQADetectors = toKeep ;
2126 }
2127 fQATasks = detAndAction(colon+1, detAndAction.Sizeof() ) ;
e3b20d9a 2128 if (fQATasks.Contains("ALL") ) {
4e25ac79 2129 fQATasks = Form("%d %d %d", AliQAv1::kHITS, AliQAv1::kSDIGITS, AliQAv1::kDIGITS) ;
e3b20d9a 2130 } else {
2131 fQATasks.ToUpper() ;
2132 TString tempo("") ;
2133 if ( fQATasks.Contains("HIT") )
4e25ac79 2134 tempo = Form("%d ", AliQAv1::kHITS) ;
e3b20d9a 2135 if ( fQATasks.Contains("SDIGIT") )
4e25ac79 2136 tempo += Form("%d ", AliQAv1::kSDIGITS) ;
e3b20d9a 2137 if ( fQATasks.Contains("DIGIT") )
4e25ac79 2138 tempo += Form("%d ", AliQAv1::kDIGITS) ;
e3b20d9a 2139 fQATasks = tempo ;
2140 if (fQATasks.IsNull()) {
2141 AliInfo("No QA requested\n") ;
2142 fRunQA = kFALSE ;
2143 return kTRUE ;
2144 }
2145 }
2146 TString tempo(fQATasks) ;
4e25ac79 2147 tempo.ReplaceAll(Form("%d", AliQAv1::kHITS), AliQAv1::GetTaskName(AliQAv1::kHITS)) ;
2148 tempo.ReplaceAll(Form("%d", AliQAv1::kSDIGITS), AliQAv1::GetTaskName(AliQAv1::kSDIGITS)) ;
2149 tempo.ReplaceAll(Form("%d", AliQAv1::kDIGITS), AliQAv1::GetTaskName(AliQAv1::kDIGITS)) ;
e3b20d9a 2150 AliInfo( Form("QA will be done on \"%s\" for \"%s\"\n", fQADetectors.Data(), tempo.Data()) ) ;
2151 fRunQA = kTRUE ;
eca4fa66 2152 AliQAManager::QAManager()->SetActiveDetectors(fQADetectors) ;
2153 AliQAManager::QAManager()->SetTasks(fQATasks) ;
4e25ac79 2154 for (Int_t det = 0 ; det < AliQAv1::kNDET ; det++)
eca4fa66 2155 AliQAManager::QAManager()->SetWriteExpert(AliQAv1::DETECTORINDEX_t(det)) ;
57acd2d2 2156
e3b20d9a 2157 return kTRUE;
2158}
2159
795e4a22 2160//_____________________________________________________________________________
2161void AliSimulation::ProcessEnvironmentVars()
2162{
2163// Extract run number and random generator seed from env variables
2164
2165 AliInfo("Processing environment variables");
2166
2167 // Random Number seed
2168
2169 // first check that seed is not already set
2170 if (fSeed == 0) {
2171 if (gSystem->Getenv("CONFIG_SEED")) {
2172 fSeed = atoi(gSystem->Getenv("CONFIG_SEED"));
2173 }
2174 } else {
2175 if (gSystem->Getenv("CONFIG_SEED")) {
2176 AliInfo(Form("Seed for random number generation already set (%d)"
2177 ": CONFIG_SEED variable ignored!", fSeed));
2178 }
2179 }
2180
2181 AliInfo(Form("Seed for random number generation = %d ", fSeed));
2182
2183 // Run Number
2184
2185 // first check that run number is not already set
2186 if(fRun < 0) {
2187 if (gSystem->Getenv("DC_RUN")) {
2188 fRun = atoi(gSystem->Getenv("DC_RUN"));
2189 }
2190 } else {
2191 if (gSystem->Getenv("DC_RUN")) {
2192 AliInfo(Form("Run number already set (%d): DC_RUN variable ignored!", fRun));
2193 }
2194 }
2195
2196 AliInfo(Form("Run number = %d", fRun));
2197}
ff5970a3 2198
44e45fac 2199//---------------------------------------------------------------------
fc7e1b1c 2200void AliSimulation::WriteGRPEntry()
2201{
2202 // Get the necessary information from galice (generator, trigger etc) and
2203 // write a GRP entry corresponding to the settings in the Config.C used
44e45fac 2204 // note that Hall probes and Cavern and Surface Atmos pressures are not simulated.
2205
2206
fc7e1b1c 2207 AliInfo("Writing global run parameters entry into the OCDB");
2208
44e45fac 2209 AliGRPObject* grpObj = new AliGRPObject();
fc7e1b1c 2210
44e45fac 2211 grpObj->SetRunType("PHYSICS");
2212 grpObj->SetTimeStart(0);
5cf76849 2213 TDatime curtime;
2214 grpObj->SetTimeStart(0);
2215 grpObj->SetTimeEnd(curtime.Convert());
2216 grpObj->SetBeamEnergyIsSqrtSHalfGeV(); // new format of GRP: store sqrt(s)/2 in GeV
fc7e1b1c 2217
3e2e3ece 2218 const AliGenerator *gen = gAlice->GetMCApp()->Generator();
fc7e1b1c 2219 if (gen) {
5cf76849 2220 grpObj->SetBeamEnergy(gen->GetEnergyCMS()/2);
fc7e1b1c 2221 TString projectile;
2222 Int_t a,z;
2223 gen->GetProjectile(projectile,a,z);
2224 TString target;
2225 gen->GetTarget(target,a,z);
2226 TString beamType = projectile + "-" + target;
214a2a31 2227 beamType.ReplaceAll(" ","");
e7c989e4 2228 if (!beamType.CompareTo("-")) {
57acd2d2 2229 grpObj->SetBeamType("UNKNOWN");
e7c989e4 2230 }
2231 else {
57acd2d2 2232 grpObj->SetBeamType(beamType);
2233 // Heavy ion run, the event specie is set to kHighMult
2234 fEventSpecie = AliRecoParam::kHighMult;
2235 if ((strcmp(beamType,"p-p") == 0) ||
2236 (strcmp(beamType,"p-") == 0) ||
2237 (strcmp(beamType,"-p") == 0) ||
2238 (strcmp(beamType,"P-P") == 0) ||
2239 (strcmp(beamType,"P-") == 0) ||
2240 (strcmp(beamType,"-P") == 0)) {
2241 // Proton run, the event specie is set to kLowMult
2242 fEventSpecie = AliRecoParam::kLowMult;
2243 }
e7c989e4 2244 }
57acd2d2 2245 } else {
44e45fac 2246 AliWarning("Unknown beam type and energy! Setting energy to 0");
2247 grpObj->SetBeamEnergy(0);
2248 grpObj->SetBeamType("UNKNOWN");
fc7e1b1c 2249 }
2250
2251 UInt_t detectorPattern = 0;
2252 Int_t nDets = 0;
2253 TObjArray *detArray = gAlice->Detectors();
2254 for (Int_t iDet = 0; iDet < AliDAQ::kNDetectors-1; iDet++) {
2255 if (detArray->FindObject(AliDAQ::OfflineModuleName(iDet))) {
2256 detectorPattern |= (1 << iDet);
2257 nDets++;
2258 }
2259 }
1be29b9e 2260 // CTP
28da60d3 2261 if (!fTriggerConfig.IsNull())
1be29b9e 2262 detectorPattern |= (1 << AliDAQ::DetectorID("TRG"));
2263
fc7e1b1c 2264 // HLT
2265 if (!fRunHLT.IsNull())
2266 detectorPattern |= (1 << AliDAQ::kHLTId);
ff5970a3 2267
44e45fac 2268 grpObj->SetNumberOfDetectors((Char_t)nDets);
2269 grpObj->SetDetectorMask((Int_t)detectorPattern);
2270 grpObj->SetLHCPeriod("LHC08c");
2271 grpObj->SetLHCState("STABLE_BEAMS");
99c7d495 2272 //
f7a1cc68 2273 AliMagF *field = (AliMagF*)TGeoGlobalMagField::Instance()->GetField();
2274 Float_t solenoidField = field ? TMath::Abs(field->SolenoidField()) : 0;
fc7e1b1c 2275
99c7d495 2276 Float_t factorSol = field ? field->GetFactorSol() : 0;
2277 Float_t currentSol = TMath::Abs(factorSol)>1E-6 ?
2278 TMath::Nint(TMath::Abs(solenoidField/factorSol))/5.*30000.*TMath::Abs(factorSol) : 0;
2279 //
2280 Float_t factorDip = field ? field->GetFactorDip() : 0;
2281 Float_t currentDip = 6000.*TMath::Abs(factorDip);
2282 //
2283 grpObj->SetL3Current(currentSol,(AliGRPObject::Stats)0);
2284 grpObj->SetDipoleCurrent(currentDip,(AliGRPObject::Stats)0);
2285 grpObj->SetL3Polarity(factorSol>0 ? 0:1);
2286 grpObj->SetDipolePolarity(factorDip>0 ? 0:1);
2287 grpObj->SetUniformBMap(field->IsUniform()); // for special MC with k5kGUniform map
2288 grpObj->SetPolarityConventionLHC(); // LHC convention +/+ current -> -/- field main components
2289 //
44e45fac 2290 grpObj->SetCavernTemperature(0,(AliGRPObject::Stats)0);
2291
2292 //grpMap->Add(new TObjString("fCavernPressure"),new TObjString("0")); ---> not inserted in simulation with the new object, since it is now an AliDCSSensor
fc7e1b1c 2293
2294 // Now store the entry in OCDB
2295 AliCDBManager* man = AliCDBManager::Instance();
2296
2b541cc7 2297 AliCDBId id("GRP/GRP/Data", man->GetRun(), man->GetRun(), 1, 1);
fc7e1b1c 2298 AliCDBMetaData *metadata= new AliCDBMetaData();
2299
fc7e1b1c 2300 metadata->SetResponsible("alice-off@cern.ch");
2301 metadata->SetComment("Automatically produced GRP entry for Monte Carlo");
2302
44e45fac 2303 man->Put(grpObj,id,metadata);
fc7e1b1c 2304}
44e45fac 2305
2306