4 #include "KVFAZIASelector.h"
5 #include "KVReconstructedNucleus.h"
6 #include "KVBatchSystem.h"
9 #include "KVDataAnalyser.h"
10 #include "KVFAZIAReconDataAnalyser.h"
11 #include "KVFAZIADetector.h"
13 #include "KVClassFactory.h"
15 #include "KVDataRepositoryManager.h"
16 #include "KVDataSetManager.h"
17 #include "KVFAZIADBRun.h"
18 #include "KVFAZIADB.h"
19 #include "KVFileReader.h"
62 SetReadingOfRawData(kFALSE);
103 Info(
"Init",
"Analysing data in branch : %s",
GetBranchName());
136 Info(
"Notify",
"Beginning analysis of file %s (%lld events)",
fChain->GetCurrentFile()->GetName(),
fChain->GetTree()->GetEntries());
139 printf(
"KVFAZIASelector-LOG: Start run : %d\n",
fCurrentRun);
153 Info(
"LinkRawData",
"Enable reading of raw data : %s\n",
rawdatabranchname.Data());
168 while ((sig = (
KVSignal*)next_s())) {
176 Warning(
"ConnectSignalsToDetectors",
"Unknown detector %s", sig->
GetDetectorName());
204 KVClassFactory cf(kvsname,
"User analysis class", Class_Name(), kTRUE);
233 TString output_path = gSystem->Getenv(
"FAZIASELECTOR_OUTPUTS");
234 fOutputPath.Form(
"%s/%s/%s", output_path.Data(), GetName(), gDataSet->GetName());
235 if (output_path ==
"") {
236 Error(
"CreateOutputFile",
"FAZIASELECTOR_OUTPUTS shell variable has to defined first");
241 else if (gSystem->Exec(Form(
"test -d %s",
fOutputPath.Data())) != 0) {
242 Info(
"SetAutomaticManagementOfOutputs",
"Creation of %s directory",
fOutputPath.Data());
243 if (gSystem->mkdir(
fOutputPath.Data(), kTRUE) != 0) {
244 Info(
"SetAutomaticManagementOfOutputs",
"Error in the %s directory creation",
fOutputPath.Data());
299 Error(
"SaveAndCloseOutputFile",
"No file open for writing outputs");
311 gROOT->ProcessLine(Form(
".! mv %s %s", fmt1.Data(), fmt2.Data()));
324 Info(
"Process",
"End of file reached after %lld events",
fEventsRead);
326 printf(
"KVFAZIASelector-LOG: End run : %d\n",
fCurrentRun);
352 TString output_path = gSystem->Getenv(
"FAZIASELECTOR_OUTPUTS");
354 op.Form(
"%s/%s/%s", output_path.Data(), kvsname, dsname);
355 if (output_path ==
"") {
356 printf(
"Error in CheckListOfEndedRuns : FAZIASELECTOR_OUTPUTS shell variable is not defined\n");
359 if (gSystem->Exec(Form(
"test -d %s", op.Data())) != 0) {
360 printf(
"directory %s does not exist\n", op.Data());
364 KVString lruns = gSystem->GetFromPipe(Form(
"ls %s/R*.root", op.Data()));
367 while (!lruns.
End()) {
369 srun = gSystem->BaseName(srun.Data());
370 Int_t rep = sscanf(srun.Data(),
"R%d.root", &run);
375 printf(
"Ended runs for the selector %s and the dataset %s are:\n%s\n", kvsname, dsname, lr.
AsString());
377 printf(
"No runs ended for the selector %s and the dataset %s\n", kvsname, dsname);
431 TString output_path = gSystem->Getenv(
"FAZIASELECTOR_OUTPUTS");
433 op.Form(
"%s/%s/%s", output_path.Data(), kvsname, dsname);
434 if (output_path ==
"") {
435 printf(
"Error in CheckListOfEndedRuns : FAZIASELECTOR_OUTPUTS shell variable is not defined\n");
438 if (gSystem->Exec(Form(
"test -d %s", op.Data())) != 0) {
439 printf(
"directory %s does not exist\n", op.Data());
445 gDataRepositoryManager->
Init();
450 TList* lsyst =
new TList();
451 lsyst->SetOwner(kTRUE);
453 KVString lruns = gSystem->GetFromPipe(Form(
"ls %s/R*.root", op.Data()));
456 while (!lruns.
End()) {
458 srun = gSystem->BaseName(srun.Data());
459 Int_t rep = sscanf(srun.Data(),
"R%d.root", &run);
466 printf(
"creation de la liste associee a : %s\n", fr->
GetSystemName());
467 lsyst->Add(lpersyst);
479 slist.ReplaceAll(
" ",
",");
480 TString sname(lpersyst->
GetName());
481 sname.ReplaceAll(
"+ ",
"");
482 sname.ReplaceAll(
" MeV/A",
"");
483 sname.ReplaceAll(
" ",
"");
486 inst.Form(
"hadd -f -k -v 0 %s/%s.root %s/R{%s}.root",
494 inst.Form(
"hadd -f -k -v 0 %s/%s.root %s/R%d.root",
504 std::cout <<
"Creation of output file " << sname.Data() <<
".root from run list:" << std::endl;
505 std::cout << lpersyst->
AsString() <<
" ..." << std::endl;
507 sroot.Form(
"%s/%s.root",
512 fruns.SetValue(
"System", lpersyst->
GetName());
513 fruns.SetValue(
"DataSet", dsname);
514 fruns.SetValue(
"Selector", kvsname);
515 fruns.SetValue(
"Number", lpersyst->
GetNValues());
516 fruns.SetValue(
"RunList", lpersyst->
AsString());
517 gSystem->Exec(inst.Data());
518 std::cout <<
" ... done" << std::endl;
520 Form(
"%s/listruns_%s.env",
557 TString output_path = gSystem->Getenv(
"FAZIASELECTOR_OUTPUTS");
559 op.Form(
"%s/%s/%s", output_path.Data(), kvsname, dsname);
560 if (output_path ==
"") {
561 printf(
"Error in CheckListOfEndedRuns : FAZIASELECTOR_OUTPUTS shell variable is not defined\n");
564 if (gSystem->Exec(Form(
"test -d %s", op.Data())) != 0) {
565 printf(
"directory %s does not exist\n", op.Data());
571 gDataRepositoryManager->
Init();
575 KVString lenv = gSystem->GetFromPipe(Form(
"ls %s/*env", op.Data()));
577 while (!lenv.
End()) {
580 env.ReadFile(senv.Data(), kEnvAll);
581 TString syst(env.GetValue(
"System",
""));
582 TString sruns(env.GetValue(
"RunList",
""));
587 ltot.
Remove(sruns.Data());
589 printf(
"System: %s, Missing Runs %s\n", dbsys->GetName(), ltot.
AsString());
591 printf(
"System: %s, All runs done\n", dbsys->GetName());
659 KVString lfiles = gSystem->GetFromPipe(Form(
"ls %s_R*.o*", kvsname));
661 lfiles += gSystem->GetFromPipe(Form(
"ls %s.o*", kvsname));
664 Double_t max_sys_time = 0, max_cpu_time = 0, max_res_mem = 0, max_virt_mem = 0, max_ratio = 0;
665 Double_t sys_time = 0, cpu_time = 0, res_mem = 0, virt_mem = 0;
670 while (!lfiles.
End()) {
682 if (line.BeginsWith(
"Info in <KVFAZIAReconDataAnalyser::SetRuns>: Accepted runs :")) {
683 line.ReplaceAll(
"Info in <KVFAZIAReconDataAnalyser::SetRuns>: Accepted runs :",
"");
684 linit.
Add(line.Data());
685 linit_all.
Add(line.Data());
687 else if (line.BeginsWith(
"Info in <KVFAZIAReconDataAnalyser::SubmitTask>: treatment of run#")) {
688 line.ReplaceAll(
"Info in <KVFAZIAReconDataAnalyser::SubmitTask>: treatment of run#",
"");
691 lstarted_all.
Add(num);
693 else if (line.BeginsWith(Form(
"Info in <%s::Process>: End of file reached after ", kvsname))) {
697 else if (line.BeginsWith(
"CpuSys = ")) {
698 sscanf(line.Data(),
" CpuSys = %lf s. CpuUser = %lf s. ResMem = %lf MB VirtMem = %lf MB",
699 &sys_time, &cpu_time, &res_mem, &virt_mem);
708 if (ratio > max_ratio) max_ratio = ratio;
710 if (sys_time > max_sys_time) max_sys_time = sys_time;
711 if (cpu_time > max_cpu_time) max_cpu_time = cpu_time;
712 if (res_mem > max_res_mem) max_res_mem = res_mem;
713 if (virt_mem > max_virt_mem) max_virt_mem = virt_mem;
717 printf(
"in %s : runs not started : %s\n", file.Data(), linit.
AsString());
721 printf(
"in %s : runs not ended : %s\n", file.Data(), lstarted.
AsString());
724 printf(
"in %s : initial run list is empty\n", file.Data());
732 env.SetValue(
"Nfiles", nf);
733 env.SetValue(
"Runlist", linit_all.
AsString());
734 env.SetValue(
"CpuSys(s)", max_sys_time);
735 env.SetValue(
"CpuUser(s)", max_cpu_time);
736 env.SetValue(
"CpuPerRun", max_ratio);
737 env.SetValue(
"ResMem(MB)", max_res_mem);
738 env.SetValue(
"VirtMem(MB)", max_virt_mem);
740 printf(
"%d log files read\n", nf);
741 printf(
"initial runlist : %s\n", linit_all.
AsString());
742 printf(
"Maximum values\n");
743 printf(
"CpuSys=%lf s\nCpuUser=%lf s (%lf s/run)\nResMem=%lf MB\nVirtMem=%lf MB\n",
753 linit_all.
Remove(lstarted_all);
755 printf(
"\truns not started : %s\n", linit_all.
AsString());
756 lmissing.
Add(linit_all);
757 lstarted_all.
Remove(lended_all);
759 printf(
"\truns not ended : %s\n", lstarted_all.
AsString());
760 lmissing.
Add(lstarted_all);
762 printf(
"\t%d runs to be done : %s with a total time of %lf\n", lmissing.
GetNValues(), lmissing.
AsString(), max_ratio * lmissing.
GetNValues());
763 env.SetValue(
"MissingRuns", lmissing.
AsString());
764 env.WriteFile(Form(
"%s.joblog", kvsname));
767 gROOT->ProcessLine(Form(
".! rm %s_R*.o*", kvsname));
768 gROOT->ProcessLine(Form(
".! rm %s.o*", kvsname));
Factory class for generating skeleton files for new classes.
void GenerateCode()
Generate header and implementation file for currently-defined class.
void AddImplIncludeFile(const Char_t *filename)
const Char_t * GetSystemName() const
Database class used to store information on different colliding systems studied during an experiment....
virtual void GetRunList(KVNumberList &) const
Fills the KVNumberList object with the list of all run numbers associated with this system.
virtual void preInitAnalysis()
virtual void preInitRun()
Manages access to one or more data repositories.
KVDataSet * GetDataSet(Int_t) const
Return pointer to DataSet using index in list of all datasets, index>=0.
const Char_t * GetBranchName() const
KVEvent * Event
Declaration of leaf types.
Long64_t fEventsRead
number of events read
TTree * fChain
pointer to the analyzed TTree or TChain
virtual void SlaveBegin(TTree *tree)
TBranch * b_Event
List of branches.
void SetBranchName(const Char_t *n)
virtual void SetAdditionalBranchAddress()
Bool_t IsOptGiven(const Char_t *option)
Bool_t fNotifyCalled
avoid multiple calls to Notify/InitRun
TString GetOpt(const Char_t *option) const
virtual void ParseOptions()
virtual KVDBSystem * GetSystem(const Char_t *system) const
Database entry for a run in a FAZIA experiment.
KVFAZIADBRun * GetRun(Int_t run) const
Base class for FAZIA detectors.
void SetSignal(TGraph *signal, const Char_t *signal_name)
static const Char_t * GetNewName(KVString oldname)
TClonesArray * GetSignals() const
Pilot analysis of reconstructed FAZIA data.
virtual void ParseOptions()
void SetAutomaticManagementOfOutputs(Bool_t automatic=kTRUE)
TString rawdatabranchname
Bool_t NeedToReadRawData() const
virtual void CheckEndOfRun()
Testing whether EndRun() should be called.
KVFAZIARawEvent * RawEvent
static void MergeListOfEndedRuns(const Char_t *kvsname, const Char_t *dsname)
static void CheckListOfWellEndedRuns(const Char_t *kvsname, const Char_t *dsname)
virtual void Init(TTree *tree)
Bool_t SetReadingOfRawData(Bool_t need=kFALSE)
Bool_t SaveAndCloseOutputFile()
static void GetMissingRunsListing(const Char_t *kvsname, const Char_t *dsname)
Bool_t CreateOutputFile()
Int_t GetCurrentRunNumber() const
void ConnectSignalsToDetectors()
static void CheckBatchOutputFiles(const Char_t *kvsname, Bool_t eraseafter=kFALSE)
static void Make(const Char_t *kvsname="MyOwnFAZIASelector")
Automatic generation of KVSelector-derived class for KaliVeda analysis.
Handle reading columns of numeric data in text files.
KVString GetCurrentLine()
ReadStatus ReadLine(const KVString &pattern="")
Bool_t OpenFileToRead(const KVString &filename)
KVDetector * GetDetector(const Char_t *name) const
Return detector in this structure with given name.
Strings used to represent a set of ranges of values.
virtual void SetName(const char *name)
Int_t First() const
Returns smallest number included in list.
const Char_t * AsString(Int_t maxchars=0) const
void Remove(Int_t)
Remove value 'n' from the list.
const Char_t * GetExpandedList() const
virtual const char * GetName() const
void Add(Int_t)
Add value 'n' to the list.
const Char_t * GetType() const
const Char_t * GetDetectorName() const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const