FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
run_digi.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_digi(TString mcEngine = "TGeant3")
9 {
11  // logger->SetLogFileName("MyLog.log");
12  // logger->SetLogToScreen(kTRUE);
13  // logger->SetLogToFile(kTRUE);
14  logger->SetLogVerbosityLevel("LOW");
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/testrun_";
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/testdigi_";
31  outFile = outFile + mcEngine + ".root";
32 
33  // ----- Timer --------------------------------------------------------
34  TStopwatch timer;
35 
36  // ----- Reconstruction run -------------------------------------------
37  FairRunAna* fRun = new FairRunAna();
38  FairFileSource* fFileSource = new FairFileSource(inFile);
39  fRun->SetSource(fFileSource);
40  fRun->SetSink(new FairRootFileSink(outFile));
41  fRun->SetUseFairLinks(kTRUE);
43  // FairLinkManager::Instance()->AddIncludeType(1);
44  fRun->SetGenerateRunInfo(kTRUE); // Create FairRunInfo file
45 
46  FairRuntimeDb* rtdb = fRun->GetRuntimeDb();
47  FairParRootFileIo* parInput1 = new FairParRootFileIo();
48  parInput1->open(parFile.Data());
49  rtdb->setFirstInput(parInput1);
50 
51  // ----- TorinoDetector hit producers ---------------------------------
53  fRun->AddTask(digiTask);
54 
55  fRun->Init();
56 
57  timer.Start();
58  fRun->Run();
59 
60  // ----- Finish -------------------------------------------------------
61 
62  cout << endl << endl;
63 
64  // Extract the maximal used memory an add is as Dart measurement
65  // This line is filtered by CTest and the value send to CDash
66  FairSystemInfo sysInfo;
67  Float_t maxMemory = sysInfo.GetMaxMemory();
68  cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">";
69  cout << maxMemory;
70  cout << "</DartMeasurement>" << endl;
71 
72  timer.Stop();
73  Double_t rtime = timer.RealTime();
74  Double_t ctime = timer.CpuTime();
75 
76  Float_t cpuUsage = ctime / rtime;
77  cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">";
78  cout << cpuUsage;
79  cout << "</DartMeasurement>" << endl;
80 
81  cout << endl << endl;
82  cout << "Output file is " << outFile << endl;
83  cout << "Parameter file is " << parFile << endl;
84  cout << "Real time " << rtime << " s, CPU time " << ctime << "s" << endl << endl;
85  cout << "Macro finished successfully." << endl;
86 
87  // ------------------------------------------------------------------------
88 }
list of container factories
Definition: FairRuntimeDb.h:24
void Init()
Definition: FairRunAna.cxx:127
virtual void AddIncludeType(Int_t type)
void SetGenerateRunInfo(Bool_t write)
Definition: FairRun.h:131
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 run_digi(TString mcEngine="TGeant3")
Definition: run_digi.C:8
static FairLinkManager * Instance()
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)
virtual void SetSource(FairSource *tempSource)
Definition: FairRunAna.h:70
StepLogger logger
void SetLogVerbosityLevel(const char *verbosity)
Definition: FairLogger.h:87
Bool_t setFirstInput(FairParIo *)