4 #include "KVRawDataAnalyser.h"
5 #include "KVMultiDetArray.h"
6 #include "KVClassFactory.h"
25 TotalEntriesToRead = 0;
70 if ((!fRunFile) || fRunFile->IsZombie()) {
72 if (fRunFile)
delete fRunFile;
87 fCurrentRun = gExpDB->
GetDBRun(fRunNumber);
95 Long64_t nevents = GetNbEventToRead();
98 cout << endl <<
"Reading all events from file " << raw_file.Data() << endl;
101 cout << endl <<
"Reading " << nevents <<
" events from file " << raw_file.Data() << endl;
104 cout <<
"Starting analysis of run " << fRunNumber <<
" on : ";
106 cout << now.AsString() << endl << endl;
108 fCurrentRun->Print();
116 while ((nevents-- ? fRunFile->GetNextEvent() : kFALSE) && !AbortProcessingLoop()) {
121 if(fRustines.HasActivePatches())
122 if(fRustines.SkipEvent(gMultiDetArray))
127 if (!Analysis())
break;
130 if (CheckStatusUpdateInterval(fEventNumber)) DoStatusUpdate(fEventNumber);
135 cout <<
"Ending analysis of run " << fRunNumber <<
" on : ";
137 cout << now2.AsString() << endl << endl;
138 cout << endl <<
"Finished reading " << fEventNumber - 1 <<
" events from file " << raw_file.Data() << endl << endl;
176 if (gDataSet != GetDataSet()) GetDataSet()->cd();
179 fOptionList.ParseOptions(GetUserClassOptions());
186 CalculateTotalEventsToRead();
189 GetRunList().Begin();
190 while (!GetRunList().End() && !AbortProcessingLoop()) {
191 fRunNumber = GetRunList().Next();
192 fRustines.InitializePatchList(gDataSet->GetName(),fRunNumber);
197 if (fCombinedOutputFile !=
"") {
198 Info(
"Terminate",
"combine = %s", fCombinedOutputFile.Data());
200 TString file1, file2;
201 file1.Form(
"HistoFileFrom%s.root", ClassName());
202 file2.Form(
"TreeFileFrom%s.root", ClassName());
203 if (fHistoList.GetEntries()) {
205 Info(
"Terminate",
"both");
213 Info(
"Terminate",
"histo");
214 SaveHistos(fCombinedOutputFile);
217 else if (fTreeFile) {
219 Info(
"Terminate",
"tree");
222 gSystem->Rename(file2, fCombinedOutputFile);
224 else Info(
"Terminate",
"none");
249 TotalEntriesToRead = 0;
250 GetRunList().Begin();
251 while (!GetRunList().End()) {
252 Int_t r = GetRunList().Next();
271 Error(
"AddTree",
"You must call CreateTreeFile(const Char_t*) before using this method!");
274 tree->SetDirectory(fTreeFile);
295 if ((h1 = GetHisto(histo_name))) {
296 if (h1->InheritsFrom(
"TH3"))
297 FillTH3((TH3*)h1, one, two, three, four);
298 else if (h1->InheritsFrom(
"TProfile2D"))
299 FillTProfile2D((TProfile2D*)h1, one, two, three, four);
300 else if (h1->InheritsFrom(
"TH2"))
301 FillTH2((TH2*)h1, one, two, three);
302 else if (h1->InheritsFrom(
"TProfile"))
303 FillTProfile((TProfile*)h1, one, two, three);
304 else if (h1->InheritsFrom(
"TH1"))
305 FillTH1(h1, one, two);
307 Warning(
"FillHisto",
"%s -> Classe non prevue ...", fHistoList.FindObject(histo_name)->ClassName());
310 Warning(
"FillHisto",
"%s introuvable", histo_name);
323 if ((h1 = GetHisto(histo_name))) {
324 h1->Fill(label, weight);
327 Warning(
"FillHisto",
"%s introuvable", histo_name);
347 if (!strcmp(tree_name,
"")) {
348 fTreeList.Execute(
"Fill",
"");
352 if ((tt = GetTree(tree_name))) {
356 Warning(
"FillTree",
"%s introuvable", tree_name);
392 if (!fHistoList.GetEntries())
return;
394 TString histo_file_name =
"";
395 if (!strcmp(filename,
""))
396 histo_file_name.Form(
"HistoFileFrom%s.root", ClassName());
398 histo_file_name = filename;
400 Bool_t justopened = kFALSE;
403 TDirectory* pwd = gDirectory;
407 if (!(file = (TFile*)gROOT->GetListOfFiles()->FindObject(histo_file_name.Data()))) {
408 file =
new TFile(histo_file_name.Data(), option);
412 TIter next(GetHistoList());
414 while ((obj = next())) {
415 if (obj->InheritsFrom(
"TH1")) {
417 if (((TH1*)obj)->GetEntries() > 0) {
442 TString tree_file_name;
443 if (!strcmp(filename,
""))
444 tree_file_name.Form(
"TreeFileFrom%s.root", ClassName());
446 tree_file_name = filename;
448 TDirectory* savedir = gDirectory;
449 fTreeFile =
new TFile(tree_file_name,
"RECREATE");
466 kTRUE,
"RawAnalysisTemplate");
static void CombineFiles(const Char_t *file1, const Char_t *file2, const Char_t *newfilename, Bool_t keep=kTRUE)
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)
ULong64_t GetEvents() const
FileType * OpenRunfile(const Char_t *type, Int_t run)
TString GetFullPathToRunfile(const Char_t *type, Int_t run) const
KVDBRun * GetDBRun(Int_t number) const
virtual void InitialiseRawDataReading(KVRawDataReader *)
static KVMultiDetArray * MakeMultiDetector(const Char_t *dataset_name, Int_t run=-1, TString classname="KVMultiDetArray")
virtual Bool_t HandleRawDataEvent(KVRawDataReader *)
Abstract base class for user analysis of raw data.
virtual void SaveHistos(const Char_t *filename="", Option_t *option="recreate", Bool_t onlyfilled=kFALSE)
Bool_t CreateTreeFile(const Char_t *filename="")
void FillTree(const Char_t *sname="")
void FillHisto(const Char_t *sname, Double_t one, Double_t two=1, Double_t three=1, Double_t four=1)
virtual ~KVRawDataAnalyser()
Destructor.
static void Make(const Char_t *kvsname="MyOwnRawDataAnalyser")
Automatic generation of derived class for raw data analysis.
void CalculateTotalEventsToRead()
loop over runs and calculate total events
void AddTree(TTree *tree)
void AbortDuringRunProcessing()
Method called to abort analysis during processing of a run.
Abstract base class for reading raw (DAQ) data.
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....