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