forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_digi_tof.C
More file actions
89 lines (71 loc) · 2.79 KB
/
Copy pathrun_digi_tof.C
File metadata and controls
89 lines (71 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#if !defined(__CLING__) || defined(__ROOTCLING__)
#include <sstream>
#include <TStopwatch.h>
#include "FairLogger.h"
#include "FairRunAna.h"
#include "FairFileSource.h"
#include "FairRuntimeDb.h"
#include "FairParRootFileIo.h"
#include "FairSystemInfo.h"
#include "TOFSimulation/DigitizerTask.h"
#endif
void run_digi_tof(Int_t nEvents = 10, Float_t rate=50.e3)
{
// if rate>0 then continuous simulation for this rate will be performed
// Initialize logger
FairLogger* logger = FairLogger::GetLogger();
logger->SetLogVerbosityLevel("LOW");
logger->SetLogScreenLevel("DEBUG");
// Input and output file name
std::stringstream inputfile, outputfile, paramfile;
//inputfile << "AliceO2_" << mcEngine << ".mc_" << nEvents << "_event.root";
//paramfile << "AliceO2_" << mcEngine << ".params_" << nEvents << ".root";
//outputfile << "AliceO2_" << mcEngine << ".digi_" << nEvents << "_event.root";
inputfile << "o2sim.root";
paramfile << "o2sim_par.root";
outputfile << "o2sim_digi.root";
// Setup timer
TStopwatch timer;
// Setup FairRoot analysis manager
FairRunAna* fRun = new FairRunAna();
FairFileSource* fFileSource = new FairFileSource(inputfile.str().c_str());
fRun->SetSource(fFileSource);
fRun->SetOutputFile(outputfile.str().c_str());
if (rate > 0) {
fFileSource->SetEventMeanTime(1.e9 / rate); // is in us
}
// Setup Runtime DB
FairRuntimeDb* rtdb = fRun->GetRuntimeDb();
FairParRootFileIo* parInput1 = new FairParRootFileIo();
parInput1->open(paramfile.str().c_str());
rtdb->setFirstInput(parInput1);
// Setup digitizer
o2::tof::DigitizerTask* digi = new o2::tof::DigitizerTask();
// digi->setContinuous(rate > 0);
// digi->setFairTimeUnitInNS(1.0); // tell in which units (wrt nanosecond) FAIT timestamps are
fRun->AddTask(digi);
fRun->Init();
timer.Start();
fRun->Run();
std::cout << std::endl << std::endl;
// Extract the maximal used memory an add is as Dart measurement
// This line is filtered by CTest and the value send to CDash
FairSystemInfo sysInfo;
Float_t maxMemory = sysInfo.GetMaxMemory();
std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">";
std::cout << maxMemory;
std::cout << "</DartMeasurement>" << std::endl;
timer.Stop();
Double_t rtime = timer.RealTime();
Double_t ctime = timer.CpuTime();
Float_t cpuUsage = ctime / rtime;
cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">";
cout << cpuUsage;
cout << "</DartMeasurement>" << endl;
cout << endl << endl;
std::cout << "Macro finished succesfully" << std::endl;
std::cout << endl << std::endl;
std::cout << "Output file is " << outputfile.str() << std::endl;
// std::cout << "Parameter file is " << parFile << std::endl;
std::cout << "Real time " << rtime << " s, CPU time " << ctime << "s" << endl << endl;
}