FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
run_reco_timebased.C
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 void run_reco_timebased(TString mcEngine = "TGeant3")
9 {
11  logger->SetLogFileName("MyLog.log");
12  // logger->SetLogToScreen(kTRUE);
13  // logger->SetLogToFile(kTRUE);
14  // logger->SetLogVerbosityLevel("HIGH");
15  // logger->SetLogFileLevel("DEBUG4");
16  // logger->SetLogScreenLevel("DEBUG");
17 
18  // Verbosity level (0=quiet, 1=event level, 2=track level, 3=debug)
19  Int_t iVerbose = 0; // just forget about it, for the moment
20 
21  // Input file (MC events)
22  TString inFile = "data/testdigitimebased_";
23  inFile = inFile + mcEngine + ".root";
24 
25  // Parameter file
26  TString parFile = "data/testparams_";
27  parFile = parFile + mcEngine + ".root";
28 
29  // Output file
30  TString outFile = "data/testrecotimebased_";
31  outFile = outFile + mcEngine + ".root";
32 
33  // ----- Timer --------------------------------------------------------
34  TStopwatch timer;
35 
36  // ----- Reconstruction run -------------------------------------------
37 
38  FairRunAna *fRun = new FairRunAna();
39  FairFileSource *fFileSource = new FairFileSource(inFile);
40  fRun->SetSink(new FairRootFileSink(outFile));
41  fRun->RunWithTimeStamps();
42  fRun->SetUseFairLinks(kTRUE);
43 
44  FairRuntimeDb *rtdb = fRun->GetRuntimeDb();
45  FairParRootFileIo *parInput1 = new FairParRootFileIo();
46  parInput1->open(parFile.Data());
47  rtdb->setFirstInput(parInput1);
48 
49  // ----- TorinoDetector hit producers ---------------------------------
51  fRun->AddTask(hitProducer);
52 
53  fRun->Init();
54 
55  timer.Start();
56  fRun->Run();
57 
58  // ----- Finish -------------------------------------------------------
59 
60  cout << endl << endl;
61 
62  // Extract the maximal used memory an add is as Dart measurement
63  // This line is filtered by CTest and the value send to CDash
64  FairSystemInfo sysInfo;
65  Float_t maxMemory = sysInfo.GetMaxMemory();
66  cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">";
67  cout << maxMemory;
68  cout << "</DartMeasurement>" << endl;
69 
70  timer.Stop();
71  Double_t rtime = timer.RealTime();
72  Double_t ctime = timer.CpuTime();
73 
74  Float_t cpuUsage = ctime / rtime;
75  cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">";
76  cout << cpuUsage;
77  cout << "</DartMeasurement>" << endl;
78 
79  cout << endl << endl;
80  cout << "Output file is " << outFile << endl;
81  cout << "Parameter file is " << parFile << endl;
82  cout << "Real time " << rtime << " s, CPU time " << ctime << "s" << endl << endl;
83  cout << "Macro finished successfully." << endl;
84 
85  // ------------------------------------------------------------------------
86 }
list of container factories
Definition: FairRuntimeDb.h:24
void run_reco_timebased(TString mcEngine="TGeant3")
void Init()
Definition: FairRunAna.cxx:127
void Run(Int_t NStart=0, Int_t NStop=0)
Definition: FairRunAna.cxx:275
void SetSink(FairSink *tempSink)
Definition: FairRun.h:84
Float_t GetMaxMemory()
void SetUseFairLinks(Bool_t val)
Definition: FairRun.cxx:120
void SetLogFileName(const std::string &name)
Definition: FairLogger.h:79
static FairLogger * GetLogger()
Definition: FairLogger.cxx:39
FairRuntimeDb * GetRuntimeDb(void)
Definition: FairRun.h:80
virtual void AddTask(FairTask *t)
Definition: FairRun.cxx:70
Bool_t open(const Text_t *fname, Option_t *option="READ", const Text_t *ftitle="", Int_t compress=1)
StepLogger logger
void RunWithTimeStamps()
Definition: FairRunAna.cxx:624
Bool_t setFirstInput(FairParIo *)