forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_clus_tof.C
More file actions
75 lines (60 loc) · 2.25 KB
/
Copy pathrun_clus_tof.C
File metadata and controls
75 lines (60 loc) · 2.25 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
#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 "TOFReconstruction/ClustererTask.h"
#endif
void run_clus_tof(std::string outputfile = "o2clus_tof.root", std::string inputfile = "o2sim_digi.root", std::string paramfile = "o2sim_par.root")
{
// Initialize logger
FairLogger* logger = FairLogger::GetLogger();
logger->SetLogVerbosityLevel("LOW");
logger->SetLogScreenLevel("DEBUG");
// Setup timer
TStopwatch timer;
// Setup FairRoot analysis manager
FairRunAna* fRun = new FairRunAna();
FairFileSource* fFileSource = new FairFileSource(inputfile.data());
fRun->SetSource(fFileSource);
fRun->SetOutputFile(outputfile.data());
// Setup Runtime DB
FairRuntimeDb* rtdb = fRun->GetRuntimeDb();
FairParRootFileIo* parInput1 = new FairParRootFileIo();
parInput1->open(paramfile.data());
rtdb->setFirstInput(parInput1);
// Setup clusterizer
Bool_t useMCTruth = kTRUE; // kFALSE if no comparison with MC needed
o2::tof::ClustererTask* clus = new o2::tof::ClustererTask(useMCTruth);
fRun->AddTask(clus);
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 << "Output file is " << outputfile.data() << std::endl;
// std::cout << "Parameter file is " << parFile << std::endl;
std::cout << "Real time " << rtime << " s, CPU time " << ctime << "s" << endl
<< endl;
}