KaliVeda
Toolkit for HIC analysis
KVDataAnalysisLauncher.cpp
1 #include "KVDataAnalysisLauncher.h"
2 #include "TGLabel.h"
3 #include "TGMsgBox.h"
4 #include "TColor.h"
5 #include "TGButtonGroup.h"
6 #include "TGFileDialog.h"
7 #include "TObjString.h"
8 #include "TDatime.h"
9 #include "TApplication.h"
10 #include "TSocket.h"
11 #include "TGToolTip.h"
12 #include "TGFileDialog.h"
13 #include "Riostream.h"
14 #include "TClass.h"
15 #include "KVDataRepositoryManager.h"
16 #include "KVDataSetRepository.h"
17 #include "KVDataSetManager.h"
18 #include "KVDataSet.h"
19 #include "KVDataAnalysisTask.h"
20 #include "KV2Body.h"
21 #include "KVNucleus.h"
22 #include "KVExpDB.h"
23 #include "KVBatchSystemManager.h"
24 #include "TSystemDirectory.h"
25 #include "KVInputDialog.h"
26 #include "KVBatchSystemGUI.h"
27 #include "KVBatchSystemParametersGUI.h"
28 #include <KVRunFile.h>
29 #include <optional>
30 
31 #define TTDELAY 750
32 
33 //maximum length of runlist shown next to "Selected Runs :"
34 #define MAX_LENGTH_SELECTED_RUNS 40
35 
36 //#define KVDAL_DEBUG
37 
38 using namespace std;
39 
41 
42 //__________________________________________
43 
44 
47 void KVGFileList::Init(const TString& fileList, const TString& title)
48 {
49  // Init window
52  1, 1, 1, 1);
55  1, 1, 1, 1);
56 
57  // File list TGListBox
58  lbFileList = new TGListBox(this, LB_Files);
59  lbFileList->SetMultipleSelections(kTRUE);
60  lbFileList->Resize(350, 96);
61  this->AddFrame(lbFileList, eXeY);
62 
63  // File Name TGTextEntry
64  teFileName = new TGTextEntry(this, "");
65  this->AddFrame(teFileName, eX);
66 
67  // buttons
68  TGCompositeFrame* cf = new TGCompositeFrame(this, 1200, 350, kHorizontalFrame);
69  boutAdd = new TGTextButton(cf, "Add File");
70  boutAdd->SetToolTipText("Add a file to the list", TTDELAY);
71  boutAdd->Connect("Clicked()",
72  "KVGFileList",
73  this,
74  "AddFile()");
75  cf->AddFrame(boutAdd, eX);
76 
77  boutRem = new TGTextButton(cf, "Remove File");
78  boutRem->SetToolTipText("Remove the selected file from the list", TTDELAY);
79  boutRem->Connect("Clicked()",
80  "KVGFileList",
81  this,
82  "RemoveFiles()");
83  cf->AddFrame(boutRem, eX);
84 
85  boutAllRem = new TGTextButton(cf, "Remove All File");
86  boutAllRem->SetToolTipText("Remove all files from the list", TTDELAY);
87  boutAllRem->Connect("Clicked()",
88  "KVGFileList",
89  this,
90  "RemoveAllFiles()");
91  cf->AddFrame(boutAllRem, eX);
92 
93  this->AddFrame(cf, eX);
94 
95  TGTextButton* bout = new TGTextButton(this, "Done");
96  bout->SetToolTipText("Close window", TTDELAY);
97  bout->Connect("Clicked()",
98  "KVGFileList",
99  this,
100  "Done()");
101  this->AddFrame(bout, eX);
102 
103  // Map all widgets
104  MapSubwindows();
105  Resize(GetDefaultSize());
106  SetWindowName(title);
107  SetIconName(title);
108 
109  fileListString = fileList;
110  fileDialogDir = gSystem->Getenv("PWD");
111 
112  entryMax = 0;
113 }
114 
115 
116 
119 
120 KVGFileList::KVGFileList(const TString& fileList, const TString& title,
121  const TGWindow* p, const TGWindow* main,
122  Bool_t ok):
123  TGTransientFrame(p, main, 10, 10)
124 {
125  // Createur
126 
127  if (ok) {
128  Init(fileList, title);
129  InitFileList();
130  MapRaised();
131  fClient->WaitFor(this);
132  }
133 }
134 
135 
136 
139 
141 {
142  // Destructeur
143  delete lbFileList;
144  delete teFileName;
145  delete boutAdd;
146  delete boutRem;
147  delete boutAllRem;
148 }
149 
150 
151 
155 
157 {
158  // Init the file name list box from a TString. Add all fields separated by a
159  // white space.
160 
161  fileListString.Begin(" ");
162 
163 
164  while (!fileListString.End()) {
165  auto fileName = fileListString.Next();
166  if (fileName.Length() && !lbFileList->FindEntry(fileName)) {
167  lbFileList->AddEntry(new TGString(fileName), entryMax);
168  entryMax++;
169  }
170  }
171 
173  lbFileList->Layout();
174 }
175 
176 
177 
181 
183 {
184  // Add a file to the listbox. If the TGTextEntry is ampty, a file open dialog
185  // appears
186  TString fileName = teFileName->GetText();
187  if (!fileName.Length())
188  fileName = GetFileFromDialog();
189  if (fileName.Length() &&
190  !lbFileList->FindEntry(fileName) &&
191  CanAdd(fileName)) {
192  lbFileList->AddEntry(new TGString(fileName), entryMax);
193  entryMax++;
194  }
196  lbFileList->Layout();
197 }
198 
199 
200 
203 
205 {
206  // Remove all the selected files from the TGListBox
207 
208  TList sel;
210  TIter next(&sel);
211  TGLBEntry* e = nullptr;
212  while ((e = (TGLBEntry*)next())) {
213  gSystem->Unload(((TGTextLBEntry*)e)->GetText()->GetString());
214  lbFileList->RemoveEntry(e->EntryId());
215  }
217  lbFileList->Layout();
218 }
219 
220 
221 
224 
226 {
227  // Remove all the files from the TGListBox
229  entryMax = 0;
231  lbFileList->Layout();
232 }
233 
234 
235 
238 
240 {
241  // build the file list string from the content of the TGListBox
242  fileListString = "";
243  for (Int_t i = 0; i < entryMax; i++) {
245  if (fileListString.Length()) fileListString += " ";
246  fileListString += e->GetText()->GetString();
247  }
248  }
249  CloseWindow();
250 }
251 
252 
253 
256 
258 {
259  // Gets the file name from a TGFileDialog
260  TGFileInfo fil;
261  const char* filTypes[] = {"Shared Object Files", "*.so",
262  0, 0
263  };
264  fil.fFileTypes = filTypes;
265  fil.fIniDir = StrDup(fileDialogDir.Data());
266  new TGFileDialog(gClient->GetRoot(), this, kFDOpen, &fil);
267  fileDialogDir = fil.fIniDir;
268  if (fil.fFilename)
269  return fil.fFilename;
270  return {};
271 }
272 
273 
274 
277 
279 {
280  // tells whether the file in ths string fn can be added to the list box
281  Bool_t ok = kTRUE;
282 
283  FileStat_t fs;
284  auto tmp = fn;
285  gSystem->ExpandPathName(tmp);
286  if (gSystem->GetPathInfo(tmp, fs)) {
287  ok = kFALSE;
288  new TGMsgBox(gClient->GetRoot(), this,
289  "File does not exist",
290  Form("The file \"%s\" does not exist. Nothing added.",
291  fn.Data()),
293  }
294  else {
295  auto fname = fn;
296  if (!fname.EndsWith(".so")) {
297  ok = kFALSE;
298  new TGMsgBox(gClient->GetRoot(), this,
299  "Not a share object",
300  Form("The file \"%s\" is not a shared object. Nothing added.",
301  fn.Data()),
303 
304  }
305  }
306  return ok;
307 }
308 
309 
310 
312 
313 
314 
317 void KVGDirectoryList::Init(const TString& fileList, const TString& title)
318 {
319  // init window
320  KVGFileList::Init(fileList, title);
321 
322  boutAdd->SetText("Add Directory");
323  boutAdd->SetToolTipText("Add a directory to the list.", TTDELAY);
324  boutAdd->Layout();
325 
326  boutRem->SetText("Remove Directory");
327  boutRem->SetToolTipText("Remove the selected directories from the list.", TTDELAY);
328  boutRem->Layout();
329 
330  boutAllRem->SetText("Remove All Directories");
331  boutAllRem->SetToolTipText("Remove all directories from the list.", TTDELAY);
332  boutAllRem->Layout();
333 }
334 
335 
336 
339 
340 KVGDirectoryList::KVGDirectoryList(const TString& fileList, const TString& title,
341  const TGWindow* p, const TGWindow* main,
342  Bool_t ok):
343  KVGFileList(fileList, title, p, main, kFALSE)
344 {
345  // Createur
346 
347  if (ok) {
348  Init(fileList, title);
349  InitFileList();
350  MapRaised();
351  fClient->WaitFor(this);
352  }
353 }
354 
355 
356 
359 
361 {
362  // Gets the file name from a TGFileDialog
363  TGFileInfo fil;
364  const char* filTypes[] = {"Include Files", "*.[h,H]*",
365  0, 0
366  };
367  fil.fFileTypes = filTypes;
368  fil.fIniDir = StrDup(fileDialogDir.Data());
369  new TGFileDialog(gClient->GetRoot(), this, kFDOpen, &fil);
370  fileDialogDir = fil.fIniDir;
371  if (fil.fFilename)
372  return fil.fIniDir;
373  return {};
374 }
375 
376 
377 
380 
382 {
383  // tells whether the file in ths string fn can be added to the list box
384  Bool_t ok = kTRUE;
385 
386  FileStat_t fs;
387  TString tmp = fn;
388  gSystem->ExpandPathName(tmp);
389  if (gSystem->GetPathInfo(tmp.Data(), fs)) {
390  ok = kFALSE;
391  new TGMsgBox(gClient->GetRoot(), this,
392  "Directory does not exist",
393  Form("The directory \"%s\" does not exist. Nothing added.",
394  fn.Data()),
396  }
397  else {
398  if (!(fs.fMode & kS_IFDIR)) {
399  ok = kFALSE;
400  new TGMsgBox(gClient->GetRoot(), this,
401  "Not a directory",
402  Form("The path \"%s\" is not a directory. Nothing added.",
403  fn.Data()),
405 
406  }
407  }
408  return ok;
409 }
410 
411 
413 
414 
415 
423 {
424  // Main window width and height can be set using .kvrootrc variables:
425  // KaliVedaGUI.MainGUIWidth: 800
426  // KaliVedaGUI.MainGUIHeight: 600
427  // Maximum column width of runlist can be set using:
428  // KaliVedaGUI.MaxColWidth: 500
429 
430  entryMax = -1;
431  //Initialisation of resource file
432  GUIenv = new TEnv(".KVDataAnalysisGUIrc");
433  //initialisation of list used by Get/SetResource
434  ResourceNames.Add(new TNamed("Repository", ""));
435  ResourceNames.Add(new TNamed("DataSet", ""));
436  ResourceNames.Add(new TNamed("Task", ""));
437  NbResNames = ResourceNames.GetEntries();
438 
439  // list of user analysis classes present in working directory
440  UserClassNames = new TList;
441  UserClassNames->SetOwner(kTRUE);
442 
443  //initialise repositories, datasets, etc.
444  if (!gDataRepositoryManager) {
446  gDataRepositoryManager->Init();
447  }
448  if (gDataRepositoryManager->GetListOfRepositories()->GetEntries() == 0) {
449  exit(1);
450  }
451  ia = 0;
452  GetDataAnalyser();//this will set up gBatchSystemManager
453  gBatchSystemManager->GetDefaultBatchSystem()->cd();
454 
455  // Creation de l'environnement d'affichage et ajout des 2 boutons a cet
456  // environnement
457 
460  1, 1, 1, 1);
463  1, 1, 1, 1);
465  1, 1, 1, 1);
467  1, 1, 1, 1);
468  fMainGuiWidth = gEnv->GetValue("KaliVedaGUI.MainGUIWidth", 400);
469  fMainGuiHeight = gEnv->GetValue("KaliVedaGUI.MainGUIHeight", 600);
470 
471  // Creation des 3 frames dans la fenetre
472  TGCompositeFrame* cfSelect = new TGCompositeFrame(this, fMainGuiWidth, 350, kVerticalFrame);
473 
474  Int_t justMode = kTextBottom | kTextRight;
475  TGCompositeFrame* cf = new TGCompositeFrame(cfSelect, fMainGuiWidth, 350, kHorizontalFrame);
476  // Label du Repository
477  TGLabel* lab = new TGLabel(cf, "DATA REPOSITORY : ");
478  lab->Resize(150, 20);
479  lab->SetTextJustify(justMode);
480  cf->AddFrame(lab);
481  // ComboBox du Repository
482  cbRepository = new TGComboBox(cf, CB_DataRepository);
483  cbRepository->Select(-1);
484  cbRepository->Resize(150, 20);
485  cbRepository->Connect("Selected(Int_t)",
486  "KVDataAnalysisLauncher",
487  this,
488  "SelectedRepository(Int_t)");
489  cf->AddFrame(cbRepository, LHtopleft);
490 
491  // Label du Data Set
492  lab = new TGLabel(cf, "DATASET : ");
493  lab->Resize(150, 20);
494  lab->SetTextJustify(justMode);
496  20, 1, 1, 1));
497  // ComboBox du Data Set
498  cbDataSet = new TGComboBox(cf, CB_DataSet);
499  cbDataSet->Select(-1);
500  cbDataSet->Resize(150, 20);
501  cbDataSet->Connect("Selected(Int_t)",
502  "KVDataAnalysisLauncher",
503  this,
504  "SelectedDataSet(Int_t)");
505  cf->AddFrame(cbDataSet, LHtopleft);
506  cfSelect->AddFrame(cf, centerX);
507 
508  cf = new TGCompositeFrame(cfSelect, fMainGuiWidth, 350, kHorizontalFrame);
509  // Label du Task
510  lab = new TGLabel(cf, "ANALYSIS TASK : ");
511  lab->SetTextJustify(justMode);
512  lab->Resize(150, 20);
514  1, 1, 1, 1));
515  // ComboBox du Task
516  cbTask = new TGComboBox(cf, CB_AnalysisTask);
517  cbTask->Select(-1);
518  cbTask->Resize(350, 20);
519  cbTask->Connect("Selected(int)",
520  "KVDataAnalysisLauncher",
521  this,
522  "SetSystemList(int)");
523  cf->AddFrame(cbTask, LHtopleft);
524  cfSelect->AddFrame(cf, centerX);
525 
526  AddFrame(cfSelect, new TGLayoutHints(kLHintsLeft | kLHintsTop
528  10, 10, 1, 1));
529  // Systems list
530  lvSystems = new KVListView(KVDBSystem::Class(), this, fMainGuiWidth, 250);
531  lvSystems->SetDataColumns(6);
532  lvSystems->SetMaxColumnSize(gEnv->GetValue("KaliVedaGUI.MaxColWidth", 200));
533  lvSystems->SetDataColumn(1, "Zproj");
534  lvSystems->SetDataColumn(2, "Ztarget");
535  lvSystems->SetDataColumn(3, "Ebeam");
536  lvSystems->GetDataColumn(3)->SetDataFormat("%4.1lf");
537  lvSystems->SetDataColumn(4, "Runs", "GetNumberRuns");
538  lvSystems->SetDataColumn(5, "Events");
539  lvSystems->SetDataColumn(0, "System", "GetName");
540  lvSystems->ActivateSortButtons();
541  // disable context menu, Browse & multi-select functions
542  lvSystems->AllowBrowse(kFALSE);
543  lvSystems->AllowContextMenu(kFALSE);
544  lvSystems->AllowMultipleSelection(kTRUE);
545  lvSystems->Connect("SelectionChanged()", "KVDataAnalysisLauncher", this, "SystemSelectionChanged()");
546  AddFrame(lvSystems, new TGLayoutHints(kLHintsExpandX,
547  10, 10, 15, 15));
548 
549  // Frame pour la liste des runs
550 
551  TGCompositeFrame* cfRuns = new TGCompositeFrame(this, fMainGuiWidth, 400, kVerticalFrame);
552  lvRuns = new KVListView(KVRunFile::Class(), cfRuns, fMainGuiWidth, 300);
553  lvRuns->SetDataColumns(8);
554  lvRuns->SetMaxColumnSize(gEnv->GetValue("KaliVedaGUI.MaxColWidth", 200));
555  int iicc = 0;
556  lvRuns->SetDataColumn(iicc++, "Run/Index", "GetRunIndexString");
557  lvRuns->SetDataColumn(iicc++, "Events", "", kTextRight);
558  lvRuns->SetDataColumn(iicc++, "File", "GetName");
559  lvRuns->SetDataColumn(iicc, "Date", "GetFileWrittenDatime");
560  lvRuns->GetDataColumn(iicc++)->SetIsDateTime();
561  lvRuns->SetDataColumn(iicc++, "Comments", "", kTextLeft);
562  lvRuns->SetDataColumn(iicc++, "Trigger", "");
563  lvRuns->SetDataColumn(iicc++, "Version");
564  lvRuns->SetDataColumn(iicc++, "User");
565  lvRuns->ActivateSortButtons();
566  // disable context menu & Browse functions
567  lvRuns->AllowBrowse(kFALSE);
568  lvRuns->AllowContextMenu(kFALSE);
569  lvRuns->Connect("SelectionChanged()", "KVDataAnalysisLauncher", this, "UpdateListOfSelectedRuns()");
570  cfRuns->AddFrame(lvRuns, new TGLayoutHints(kLHintsLeft | kLHintsTop |
572  10, 10, 15, 15));
573 
574  // Boutons de selection
575  TGCompositeFrame* cfSelAll = new TGCompositeFrame(cfRuns, fMainGuiWidth, 20, kHorizontalFrame);
576  auto BrefreshDir = new TGPictureButton(cfSelAll, gClient->GetPicture("refresh2.xpm"));
577  BrefreshDir->Resize(20, 20);
578  cfSelAll->AddFrame(BrefreshDir, eX);
579  BrefreshDir->SetToolTipText("Update available runfiles for this datatype");
580  BrefreshDir->Connect("Clicked()", "KVDataAnalysisLauncher", this, "UpdateAvailableRuns()");
581  TGTextButton* bout = new TGTextButton(cfSelAll, "Select All");
582  bout->SetToolTipText("Select all runs for the analysis.", TTDELAY);
583  bout->Connect("Clicked()",
584  "KVDataAnalysisLauncher",
585  this,
586  "SelectAll()");
587  cfSelAll->AddFrame(bout, eX);
588  bout = new TGTextButton(cfSelAll, "Deselect All");
589  bout->SetToolTipText("Deselect all runs.", TTDELAY);
590  bout->Connect("Clicked()",
591  "KVDataAnalysisLauncher",
592  this,
593  "DeselectAll()");
594  cfSelAll->AddFrame(bout, eX);
595  bout = new TGTextButton(cfSelAll, "Runlist");
596  bout->SetToolTipText("Enter list of runs to analyse.", TTDELAY);
597  bout->Connect("Clicked()",
598  "KVDataAnalysisLauncher",
599  this,
600  "EnterRunlist()");
601  cfSelAll->AddFrame(bout, eX);
602  bStageSelect = new TGTextButton(cfSelAll, "Stage selection");
603  bStageSelect->SetToolTipText("Select all unconverted runs", TTDELAY);
604  // bStageSelect->Connect("Clicked()",
605  // "KVDataAnalysisLauncher",
606  // this,
607  // "SelectAllUnconvertedRuns()");
608  bStageSelect->Connect("Clicked()",
609  "KVDataAnalysisLauncher",
610  this,
611  "DoStageSelection()");
612  bStageSelect->SetEnabled(false);
613  cfSelAll->AddFrame(bStageSelect, eX);
614  cfRuns->AddFrame(cfSelAll, eX);
615 
616  TGHorizontalFrame* runs_and_nbevents = new TGHorizontalFrame(cfRuns, fMainGuiWidth, 20);
617  selectedRuns = new TGLabel(runs_and_nbevents, " ");
618  runs_and_nbevents->AddFrame(selectedRuns, new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 2, 2, 0, 0));
619  TGHorizontalFrame* bidule = new TGHorizontalFrame(runs_and_nbevents);
620  TGLabel* nevents = new TGLabel(bidule, "Events : ");
621  bidule->AddFrame(nevents, new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 2, 2, 0, 0));
622  teNbToRead = new TGNumberEntry(bidule, 0);
623 #ifdef __WITHOUT_TGNUMBERENTRY_SETNUMSTYLE
624  teNbToRead->SetFormat(TGNumberFormat::kNESInteger, teNbToRead->GetNumAttr());
625 #else
626  teNbToRead->SetNumStyle(TGNumberFormat::kNESInteger);
627 #endif
628 #ifdef __WITHOUT_TGNUMBERENTRY_SETNUMATTR
629  teNbToRead->SetFormat(teNbToRead->GetNumStyle(), TGNumberFormat::kNEANonNegative);
630 #else
631  teNbToRead->SetNumAttr(TGNumberFormat::kNEANonNegative);
632 #endif
633  teNbToRead->GetNumberEntry()->SetToolTipText("Number of events to read [0 => all events]", TTDELAY);
634  teNbToRead->Resize(150, 20);
635  bidule->AddFrame(teNbToRead, new TGLayoutHints(kLHintsRight | kLHintsCenterY, 2, 2, 0, 0));
636  runs_and_nbevents->AddFrame(bidule, new TGLayoutHints(kLHintsRight, 2, 2, 0, 0));
637  cfRuns->AddFrame(runs_and_nbevents, eX);
638 
639  AddFrame(cfRuns, eXeY);
640 
641  // UserClass
642  cfAnalysis = new TGCompositeFrame(this, fMainGuiWidth, 20, kVerticalFrame);
643  cf = new TGCompositeFrame(cfAnalysis, fMainGuiWidth, 20, kHorizontalFrame);
644  // Label for User Class name
645  fUserClassLabel = new TGLabel(cf, "User Class");
646  cf->AddFrame(fUserClassLabel, eX);
647  // Label du Task
648  lab = new TGLabel(cf, "User class options");
649  cf->AddFrame(lab, eX);
650 
651  cfAnalysis->AddFrame(cf, eX);
652 
653  cf = new TGCompositeFrame(cfAnalysis, fMainGuiWidth, 20, kHorizontalFrame);
654  cbUserClass = new TGComboBox(cf);
655  cbUserClass->Select(-1);
656  cbUserClass->Resize(150, 20);
657  cf->AddFrame(cbUserClass, eX);
658  cbUserClass->Connect("Selected(Int_t)", "KVDataAnalysisLauncher", this,
659  "SelectedUserClass(Int_t)");
660  btEditClass = new TGPictureButton(cf, "query_new.xpm");
661  btEditClass->SetEnabled(kFALSE);
662  btEditClass->Connect("Clicked()", "KVDataAnalysisLauncher", this, "EditUserClassFiles()");
663  btEditClass->SetToolTipText(Form("Open analysis class source files in %s", gSystem->Getenv("EDITOR")), TTDELAY);
664  cf->AddFrame(btEditClass, new TGLayoutHints(kLHintsTop | kLHintsLeft, 2, 2, 2, 2));
665 
666  teUserOptions = new TGTextEntry(cf, "");
667  teUserOptions->SetToolTipText("Comma-separated list of options for user analysis class: PAR1=VAL1,PAR2=VAL2,etc.", TTDELAY);
668  cf->AddFrame(teUserOptions, eX);
669 
670  cfAnalysis->AddFrame(cf, eX);
671 
672  AddFrame(cfAnalysis, eX);
673 
674  cf = new TGCompositeFrame(this, fMainGuiWidth, 20, kHorizontalFrame);
675  // Frame for the user's libraries
676  bout = new TGTextButton(cf, "User's libraries", B_Libs);
677  bout->Connect("Clicked()",
678  "KVDataAnalysisLauncher",
679  this,
680  "SetUserLibraries()");
681  cf->AddFrame(bout, eX);
682 
683  bout = new TGTextButton(cf, "User's includes", B_Incs);
684  bout->Connect("Clicked()",
685  "KVDataAnalysisLauncher",
686  this,
687  "SetUserIncludes()");
688  cf->AddFrame(bout, eX);
689 
690  this->AddFrame(cf, eX);
691 
692  // Process et Quit
693 #ifdef KVDAL_DEBUG
694  cout << "Creation Process/Quit" << endl;
695 #endif
696  TGCompositeFrame* cfProcess = new TGCompositeFrame(this, fMainGuiWidth, 20, kHorizontalFrame);
697  withBatch = new TGTextButton(cfProcess, "BatchMode");
698  withBatch->SetToolTipText(gBatchSystem->GetTitle());
699  withBatch->AllowStayDown(kTRUE);
700  withBatch->Connect("Clicked()", "KVDataAnalysisLauncher", this, "SetBatch()");
701  cfProcess->AddFrame(withBatch, eX);
702  doBatchParams = new TGTextButton(cfProcess, "Batch Parameters");
703  doBatchParams->SetToolTipText("Set parameters of batch jobs");
704  doBatchParams->Connect("Clicked()", "KVDataAnalysisLauncher", this, "SetBatchParameters()");
705  cfProcess->AddFrame(doBatchParams, eX);
706  // Bouton de process
707  bout = new TGTextButton(cfProcess, "&Process", B_Process);
708  bout->SetToolTipText("Run the analysis.", TTDELAY);
709  bout->Connect("Clicked()", "KVDataAnalysisLauncher", this, "Process()");
710  // bout->Associate(this);
711  cfProcess->AddFrame(bout, eX);
712  // Bouton de sortie
713  bout = new TGTextButton(cfProcess, "&Quit", B_Quit);
714  bout->SetToolTipText("Close GUI and quit.", TTDELAY);
715  bout->Connect("Clicked()", "KVDataAnalysisLauncher", this, "Exit()");
716  // bout->Associate(this);
717  cfProcess->AddFrame(bout, eX);
718 
719  this->AddFrame(cfProcess, eX);
720  // On affiche tout le monde maintenant
721  MapSubwindows();
722 
723  Resize(GetDefaultSize());
724 
725  SetWindowName(Form("KaliVeda Analysis Launcher on %s", gSystem->HostName()));
726  SetIconName(Form("KaliVeda Analysis Launcher on %s", gSystem->HostName()));
727 
728  MapWindow();
729  SetWMSize(fMainGuiWidth, fMainGuiHeight);
730 
731  SetRepositoryList();
732 
733  FillListOfUserClasses();
734  //fill drop down list of user classes in working directory
735  SetUserClassList();
736  checkCompilation = kFALSE;
737 
738  // Reset last known state of interface
739  TString tmp(GetResource("Repository", ""));
740  SetRepository(tmp.Data());
741 
742  if (GUIenv->GetValue("KVDataAnalysisLauncher.Batch", kFALSE))
743  withBatch->SetState(kButtonDown);
744  else
745  withBatch->SetState(kButtonUp);
746  SetBatch();
747 
748  fUserLibraries = GUIenv->GetValue("KVDataAnalysisLauncher.UserLibraries", "");
749  fUserIncludes = GUIenv->GetValue("KVDataAnalysisLauncher.UserIncludes", "");
750 
751 }
752 
753 
754 
757 
759 {
760  // Destructeur
761  if (ia) delete ia;
762  if (GUIenv) delete GUIenv;
763  delete UserClassNames;
764 }
765 
766 
767 
770 
772 {
773  // Sets the list of all possible repositories in the repository combo box
774 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
776 #else
778 #endif
779  cbRepository->Select(-1);
780  TIter next((TList*)gDataRepositoryManager->GetListOfRepositories());
781  TObject* o = 0;
782  Int_t i = 0;
783  while ((o = next())) {
784  cbRepository->AddEntry(o->GetName(), i);
785  i++;
786  }
787 
788  cbRepository->Layout();
789 
790 }
791 
792 
793 
798 
800 {
801  // Called when repository is selected in drop-down list
802  //
803  // Calls SetDataSetList() to fill list of available datasets for given repository
804 
806  if (sel)
807  SetDataSetList(sel->GetTitle());
808 }
809 
810 
811 
814 
816 {
817  // Sets the list of all available data sets in the data sets combo box
818  if (!gDataRepositoryManager->GetRepository(repository)) {
819  Warning("SetDataSetList", "Called for undefined repository '%s'", repository.Data());
820  return;
821  }
822 
823  SetResource("Repository", repository);
824 
825  TString ds = GetSavedResource("DataSet", "");
826 
827 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
829 #else
830  cbDataSet->RemoveAll();
831 #endif
832  cbDataSet->Select(-1);
833  gDataRepositoryManager->GetRepository(repository)->cd();
834  Int_t nbds = gDataSetManager->GetNavailable();
835  Int_t i = 0;
836  while (i < nbds) {
837  cbDataSet->AddEntry(gDataSetManager->GetAvailableDataSet(i + 1)->GetName(), i);
838  i++;
839  }
840 
841  cbDataSet->Layout();
842 
843  if (ds.Length()) {
844  SetDataSet(ds.Data());
845  }
846  else {
847  SetTask();
848  }
849 
850 }
851 
852 
853 
858 
860 {
861  // Called when dataset is selected in drop-down list
862  //
863  // Calls SetTaskList() to fill list of available tasks for given dataset
864 
865  auto sel = cbDataSet->GetSelectedEntry();
866  // allow list to close & GUI to relax before e.g. building database for new dataset
868  if (sel)
869  SetTaskList(sel->GetTitle());
870 }
871 
872 
873 
877 
879 {
880  // Sets the list of all possible tasks in the tasks combo box
881  // Called when a new dataset is selected in the dropdown list
882 
883  SetResource("DataSet", dataset);
884 
885  TString ds = GetSavedResource("Task", "");
886 
887 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
888  RemoveAll(cbTask);
889 #else
890  cbTask->RemoveAll();
891 #endif
892  cbTask->Select(-1);
893 #ifdef KVDAL_DEBUG
894  cout << "DataSet : [" << dataset << "]" << endl;
895 #endif
896  current_dataset = gDataSetManager->GetDataSet(dataset);
897  // don't block GUI building full database, just need systems & runs
900 
902 
904  if (noSystems) lvSystems->RemoveAll();
905 
906  Int_t i = 0;
907  while (i < nbt) {
909  i++;
910  }
911 
912  cbTask->Layout();
913 
914  if (ds.Length()) {
915  SetTask(ds.Data());
916  }
917  else {
918  SetSystem();
919  }
920 }
921 
922 
923 
927 
929 {
930  //Get analyser for task
931  //If task = 0 we return the current analyser
932 
933  if (!task) {
934  if (!ia) ia = new KVDataSetAnalyser;
935  }
936  else {
937  if (ia) delete ia;
939  if (!ia) ia = new KVDataSetAnalyser;
940  ia->SetAnalysisTask(task);
941  }
942  return ia;
943 }
944 
945 
946 
957 
959 {
960  // Sets the list of all possible systems in the system list.
961  // Called every time a task is selected.
962  //
963  // The choice of task may lead to a change of batch system:
964  // - if the current system is PROOFLite but the data to be read by the task is
965  // not in a TFile (i.e. not in a TTree) then we switch to Xterm batch system.
966  // - if the current system is Xterm but the data to be read by the task *is*
967  // in a TFile (i.e. in a TTree) then we switch to PROOFLite batch system
968 
969  // allow list to close & GUI to relax before e.g. building database for new dataset
971 
973 
974  TString current_batch = gBatchSystem->GetName();
975  TString data_reader = current_dataset->GetDataSetEnv(Form("DataSet.RunFileClass.%s", task->GetPrereq()));
976 
977  if (current_batch == "PROOFLite" && data_reader != "TFile") {
978  gBatchSystemManager->GetBatchSystem("Xterm")->cd();
979  withBatch->SetToolTipText(gBatchSystem->GetTitle());
980  Info("SetSystemList", "Switched batch system to %s: %s", gBatchSystem->GetName(), gBatchSystem->GetTitle());
981  }
982  else if (current_batch == "Xterm" && data_reader == "TFile") {
983  gBatchSystemManager->GetBatchSystem("PROOFLite")->cd();
984  withBatch->SetToolTipText(gBatchSystem->GetTitle());
985  Info("SetSystemList", "Switched batch system to %s: %s", gBatchSystem->GetName(), gBatchSystem->GetTitle());
986  }
987 
988  GetDataAnalyser(task);
989 
990  SetResource("Task", task->GetTitle());
991 
992  if (!task->WithUserClass()) {
993  //no user class required
995  }
996  else {
997  //user class required
999  }
1000 
1001  source_type = task->GetPrereq();
1002  // conversion task? if so, enable stage selection
1003  if (!task->GetOutputDataType().IsNull()) {
1004  output_type = task->GetOutputDataType();
1006  }
1007  else {
1008  bStageSelect->SetEnabled(false);
1009  }
1010 
1011  //update display
1012  cfAnalysis->Layout();
1013 
1014  TString ds = GetSavedResource("System", "");
1015  lastSelectedSystem = 0;
1016  if (!noSystems) {
1017  auto sys_list = current_dataset->GetListOfAvailableSystems(task);
1018  if (!sys_list.IsEmpty()) {
1019  lvSystems->Display(&sys_list);
1020  }
1021  }
1022  if (ds.Length()) {
1023  SetSystem(ds.Data());
1024  }
1025  else {
1026  SetRunsList();
1027  }
1028 }
1029 
1030 
1031 
1035 
1037 {
1038  // Sets the list of all available runs in the runs list box
1039 
1040 // SetResource("Trigger", "All");
1041  listOfRuns.Clear();
1043  if (entryMax > -1) {
1044  lvRuns->RemoveAll();
1045  list_of_runs.Clear();
1046  entryMax = -1;
1047  }
1048 
1050  KVDBSystem* system = 0;
1051  if (!noSystems || !strcmp(task->GetPrereq(), "*")) {
1052  // case where systems are defined for dataset and user has
1053  // selected a specific system
1054  // OR for online analysis (prereq data type="*")
1055  system = lastSelectedSystem;
1056  GetDataAnalyser()->SetSystem(system);
1057  if (!system) {
1058  // no system selected
1059  // clear runs list
1060  SetRuns();
1061  return;
1062  }
1063  }
1064 
1065  //Setting name of system in ressources file
1066  if (!noSystems) {
1067  // dataset with defined systems
1068  if (system) {
1069  // user has chosen a system
1070  SetResource("System", system->GetName());
1071  }
1072  else {
1073  // user chose "All" for system
1074  SetResource("System", "All");
1075  }
1076  }
1077  else {
1078  // no systems defined for dataset
1079  SetResource("System", "Unknown");
1080  }
1081 
1082  // loop over selected systems, add all runs to run list
1083  lvRuns->RemoveAll();
1084  list_of_runs.Clear();
1085  run_index_list run_list;
1086  for (auto sys_p : listofSelectedSystems) {
1087  auto system = (KVDBSystem*)sys_p;
1088  auto rl = current_dataset->GetRunList(task->GetPrereq(), system);
1089  run_list.Add(rl);
1090  auto lor = current_dataset->GetListOfAvailableRunFilesForSystem(task, system);
1091  list_of_runs.AddAll(&lor);
1092  lor.Clear("nodelete");
1093  }
1095  listOfSystemRuns = run_list;
1097 
1098  SetRuns("");
1099 
1100  // Set saved user class, number of events for current
1101  // repository, dataset, task, system, trigger & runs
1102  auto ds = GetSavedResource("UserClass", "");
1103  SetUserClass(ds);
1104  ds = GetSavedResource("NbEventsToRead", "");
1105  teNbToRead->SetIntNumber(ds.Atoi());
1106 }
1107 
1108 
1109 
1114 
1116 {
1117  // Called when user analysis class is selected in drop-down list
1118  //
1119  // Calls UserClassSelected() with name of class
1120 
1121  auto sel = cbUserClass->GetSelectedEntry();
1122  if (sel)
1123  UserClassSelected(sel->GetTitle());
1124 }
1125 
1126 
1127 
1128 
1131 
1133 {
1134  // Select all runs currently in the displayed list of runs
1135  lvRuns->SelectAll();
1137 }
1138 
1139 
1140 
1143 
1145 {
1146  // Deselect all runs currently in the displayed list of runs
1147  lvRuns->UnSelectAll();
1149 }
1150 
1151 
1152 
1155 
1157 {
1158  // Run the analysis task
1159 
1160  TString oriIncludePath = gSystem->GetIncludePath();
1161 
1163  KVDataSetAnalyser* datan = GetDataAnalyser(task);
1164  bool online_analysis = !strcmp(task->GetPrereq(), "*");
1165 
1166  //set global pointer to analyser
1167  gDataAnalyser = datan;
1168 
1169  datan->SetDataSet(current_dataset);
1170  datan->SetAnalysisTask(task);
1171  if (listOfRuns.GetNValues()) {
1172  datan->SetRuns(listOfRuns, kFALSE);
1173  datan->SetFullRunList(listOfRuns);
1174  }
1175  else if (!online_analysis) {
1176  WarningBox("Empty Run List", "The list of runs to process is empty.");
1177  return;
1178  }
1179 
1180  if (fUserIncludes.Length()) {
1182  }
1183  if (fUserLibraries.Length()) {
1185  }
1186 
1187  //Need a user class for the analysis ?
1188  TString kvs(GetUserClass());
1189  if (task->WithUserClass()) {
1190  //read user's class name from input box
1191  if (kvs.Length()) {
1193  datan->SetUserClass({kvs}, checkCompilation);
1194  if (datan->IsUserClassValid())
1196  else {
1197  // compilation failed. abort processing.
1198  delete ia;
1199  ia = 0;
1201  if (WarningBox("Compilation failed", "Please correct mistakes in user analysis class", kTRUE)) EditUserClassFiles();
1202  return;
1203  }
1204  }
1205  else {
1206  delete ia;
1207  ia = 0;
1209  WarningBox("No User Class", "Please enter the user analysis class name.");
1210  return;
1211  }
1212  }
1213  else if (strcmp(task->GetUserBaseClass(), "")) {
1214  //task with default "user" class (i.e. UserClass=no but UserClass.BaseClass!="")
1215  datan->SetUserClass({task->GetUserBaseClass()}, kFALSE);
1216  }
1217  Long64_t nbEventRead = (Long64_t)teNbToRead->GetIntNumber();
1218  // if in batch and nbEventRead>0, ask confirmation
1219  if (IsBatch() && nbEventRead) {
1220  if (!WarningBox("Read all events in batch mode?",
1221  "This will submit batch jobs which will not read all events.\nAre you sure that is what you want?",
1222  kTRUE)) {
1223  delete ia;
1224  ia = 0;
1225  return;
1226  }
1227  }
1228  // check batch parameters have been set
1229  if (IsBatch()
1230  && (!fBatchParameters.GetNpar() // never set
1231  // previously set with MultiJobsMode turned off (perhaps to read a single run), whereas we now have many runs to read
1232  || (fBatchParameters.HasBoolParameter("MultiJobsMode") && !fBatchParameters.GetBoolValue("MultiJobsMode") && listOfRuns.GetNValues() > 1))
1233  ) {
1234  if (!SetBatchParameters()) return; //abort analysis if user pressed cancel
1235  }
1237  SetResource("RunsList", listOfRuns.AsString());
1238  SetResource("UserClassOptions", teUserOptions->GetText());
1239  SetResource("NbEventsToRead", Form("%.0f", teNbToRead->GetNumber()));
1241 
1242  // before submitting the job(s), we make sure that the database for the current dataset
1243  // has been fully built, we don't want each job trying to do it (especially for batch/PROOFlite jobs)
1244  current_dataset->cd();
1245 
1246  // submit jobs for each selected system
1247  for (auto it : listofSelectedSystems) {
1248  auto sys = (KVDBSystem*)it;
1249 
1250  // build up runfile list for system
1251  run_index_list sys_run_list;
1252  for (auto it_r : sys->GetRuns()) {
1253  // keep all system runfiles in user's selection
1254  auto runfiles_for_run = dynamic_cast<KVDBRun*>(it_r)->GetRunIndexList();
1255  sys_run_list += runfiles_for_run && listOfRuns;
1256  }
1257  if (sys_run_list) {
1258  if (IsBatch()) {
1259  gBatchSystem->Clear();
1261  datan->SetBatchSystem(gBatchSystem);
1262  }
1263  else {
1264  datan->SetBatchSystem(nullptr);
1265  }
1266  datan->SetRuns(sys_run_list, false);
1267  datan->Run();
1268  }
1269  }
1270 
1271  gSystem->SetIncludePath(oriIncludePath.Data());
1272 }
1273 
1274 
1275 
1277 
1279 {
1281  return e->GetText()->GetString();
1282  }
1283  else {
1284  return "";
1285  }
1286 }
1287 
1288 
1289 
1291 
1293 {
1295  return e->GetText()->GetString();
1296  }
1297  else {
1298  return "";
1299  }
1300 }
1301 
1302 
1303 
1305 
1307 {
1309  return e->GetText()->GetString();
1310  }
1311  else {
1312  return "";
1313  }
1314 }
1315 
1316 
1317 
1319 
1321 {
1322  if (noSystems) return "";
1324  if (sys)
1325  return sys->GetName();
1326  else
1327  return "";
1328 }
1329 
1330 
1331 
1332 
1334 
1336 {
1337  return listOfRuns.AsString();
1338 }
1339 
1340 
1341 
1343 
1345 {
1346  TGLBEntry* e = 0;
1347  if ((e = cbRepository->FindEntry(r))) {
1348  Int_t i = e->EntryId();
1349 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1350  cbRepository->Select(i);
1351 #else
1352  cbRepository->Select(i, kFALSE);
1353 #endif
1354  SetDataSetList(r);
1355  }
1356  else {
1357  SetDataSet();
1358  }
1359 }
1360 
1361 
1362 
1364 
1366 {
1367  if (r.IsNull()) {
1368  //remove all datasets because no repository has been chosen yet
1369 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1371 #else
1372  cbDataSet->RemoveAll();
1373 #endif
1374  cbDataSet->Select(-1);
1375  SetResource("Repository", "");
1376  SetTask();
1377  }
1378  else {
1379  TGLBEntry* e = 0;
1380  if ((e = cbDataSet->FindEntry(r))) {
1381  Int_t i = e->EntryId();
1382 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1383  cbDataSet->Select(i);
1384 #else
1385  cbDataSet->Select(i, kFALSE);
1386 #endif
1387  SetTaskList(r);
1388  }
1389  else {
1390  SetTask();
1391  }
1392  }
1393 }
1394 
1395 
1396 
1398 
1400 {
1401  if (r.IsNull()) {
1402  //remove all tasks from list because no dataset chosen yet
1403 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1404  RemoveAll(cbTask);
1405 #else
1406  cbTask->RemoveAll();
1407 #endif
1408  cbTask->Select(-1);
1409  SetResource("DataSet", "");
1410  SetSystem();
1411  }
1412  else {
1413  TGLBEntry* e = 0;
1414  if ((e = cbTask->FindEntry(r))) {
1415  Int_t i = e->EntryId();
1416 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1417  cbTask->Select(i);
1418 #else
1419  cbTask->Select(i, kFALSE);
1420 #endif
1421  SetSystemList(i);
1422  }
1423  else {
1424  SetSystem();
1425  }
1426  }
1427 }
1428 
1429 
1430 
1432 
1434 {
1435  if (r.IsNull()) {
1436  //remove all systems from list because no task chosen yet
1437  lvSystems->RemoveAll();
1438  SetResource("Task", "");
1439  //empty list of analysis classes and disable it
1441  SetRuns();
1442  lvRuns->RemoveAll();
1443  list_of_runs.Clear();
1444  }
1445  else {
1448  }
1449 }
1450 
1451 
1452 
1458 
1460 {
1461  //KVDBSystem* system = (KVDBSystem*)lvSystems->GetLastSelectedObject();
1462  //if (system == lastSelectedSystem) return;
1463  //lastSelectedSystem = system;
1464  //GetDataAnalyser()->SetSystem(system);
1467  lastSelectedSystem = nullptr;
1468  else
1470  SetRunsList();
1471 }
1472 
1473 
1474 
1476 
1478 {
1479  if (r.IsNull()) {
1481  SetResource("Trigger", "All");
1482  SetResource("RunsList", "");
1483  }
1484  else {
1486  if (listOfRuns.GetNValues()) {
1488  SetResource("RunsList", listOfRuns.AsString());
1489  }
1491  }
1492 }
1493 
1494 
1495 
1499 
1501 {
1502  // Set the resource KVDataAnalysisLauncher.Batch according
1503  // to whether button 'Batch' is down or up
1504 
1505  if (IsBatch()) withBatch->SetText("BatchMode: On");
1506  else withBatch->SetText("BatchMode: Off");
1507  GUIenv->SetValue("KVDataAnalysisLauncher.Batch", IsBatch());
1510 }
1511 
1512 
1513 
1517 
1519 {
1520  // Open dialog to set batch parameters for job
1521  // returns kFALSE if cancel is pressed
1522 
1524  // use saved values of batch parameters
1525  fBatchParameters.SetFromEnv(GUIenv, "KVDataAnalysisLauncher");
1526  Bool_t cancel;
1527  // make sure runlist is set in analyser (controls multijobs mode)
1531  if (!cancel) {
1532  // update saved batch parameter resources
1533  fBatchParameters.WriteToEnv(GUIenv, "KVDataAnalysisLauncher");
1535  }
1536  return !cancel;
1537 }
1538 
1539 
1540 
1541 
1544 
1546 {
1547  // Set the User's libraries
1548  TString ori = fUserLibraries.Data();
1549  new KVGFileList(fUserLibraries, "User's Libraries",
1550  gClient->GetRoot(), this);
1551  GUIenv->SetValue("KVDataAnalysisLauncher.UserLibraries", fUserLibraries.Data());
1554 }
1555 
1556 
1557 
1560 
1562 {
1563  // Set the User's includes
1564  TString ori = fUserIncludes.Data();
1565  new KVGDirectoryList(fUserIncludes, "User's Includes",
1566  gClient->GetRoot(), this);
1567  GUIenv->SetValue("KVDataAnalysisLauncher.UserIncludes", fUserIncludes.Data());
1570 }
1571 
1572 
1573 
1574 
1580 
1581 Bool_t KVDataAnalysisLauncher::WarningBox(const char* title, const char* msg, Bool_t confirm)
1582 {
1583  // Warning box in case of problems
1584  // if confirm=kTRUE we ask for a yes/no answer from the user:
1585  // if 'yes' is pressed, we return kTRUE, if 'no', kFALSE.
1586  // by default, only a 'dismiss' button is shown, and this method always returns kTRUE.
1587 
1588  Bool_t reply = kTRUE;
1589  if (!confirm)
1590  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation);
1591  else {
1592  Int_t ret_code = 0;
1593  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation, kMBYes | kMBNo, &ret_code);
1594  reply = (ret_code & kMBYes);
1595  }
1596  return reply;
1597 }
1598 
1599 
1600 
1601 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1602 
1605 
1607 {
1608  //replaces functionality of TGComboBox::RemoveAll for ROOT versions < 5.11/02
1609 
1610  Int_t n = box->GetListBox()->GetNumberOfEntries();
1611  if (n) box->RemoveEntries(0, n - 1);
1612  if (box->GetSelectedEntry()) {
1613  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1614  fClient->NeedRedraw(box->GetSelectedEntry());
1615  }
1616  else {
1617  box->GetTextEntry()->SetTitle("");
1618  fClient->NeedRedraw(box->GetTextEntry());
1619  }
1620 }
1621 
1623 
1624 
1627 {
1628  //replaces functionality of TGListBox::RemoveAll for ROOT versions < 5.11/02
1629 
1630  Int_t n = box->GetNumberOfEntries();
1631  if (n) box->RemoveEntries(0, n - 1);
1632  if (box->GetSelectedEntry()) {
1633  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1634  fClient->NeedRedraw(box->GetSelectedEntry());
1635  }
1636 }
1637 
1638 #endif
1639 
1640 
1641 
1672 
1673 void KVDataAnalysisLauncher::SetResource(const TString& name, const TString& value)
1674 {
1675  // Handles resource file ".KVDataAnalysisGUIrc"
1676  // We store the current state of the interface using the following resource names:
1677  //
1678  // Repository KVDataAnalysisLauncher.Repository
1679  // DataSet KVDataAnalysisLauncher.DataSet
1680  // Task KVDataAnalysisLauncher.Task
1681  // System KVDataAnalysisLauncher.System
1682  // Trigger KVDataAnalysisLauncher.Trigger
1683  // RunsList KVDataAnalysisLauncher.RunsList
1684  // UserClass KVDataAnalysisLauncher.UserClass
1685  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector
1686  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1687  //
1688  // We also keep a "memory" of all selected configurations using the following
1689  // resource names:
1690  //
1691  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1692  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1693  // System KVDataAnalysisLauncher.System.[repository].[dataset].[task]
1694  // Trigger KVDataAnalysisLauncher.Trigger.[repository].[dataset].[task].[system]
1695  // RunsList KVDataAnalysisLauncher.RunsList.[repository].[dataset].[task].[system].[trigger]
1696  // UserClass KVDataAnalysisLauncher.UserClass.[repository].[dataset].[task].[system].[trigger]
1697  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector.[repository].[dataset].[task].[system].[trigger]
1698  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead.[repository].[dataset].[task].[system].[trigger]
1699  //
1700  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1701  // N.B.2. [system]: it is the name given by SystemBatchName() which is used in the resource name.
1702  // N.B.3. [trigger]: for the resource name we take "M > 4", "M>=8" "All" etc. and replace all ' ', '>' or '=' by ''
1703  // to give "M4", "M8", "All", etc.
1704 
1705  TString res, ful_res;
1706 
1707  BuildResourceName(name, res, ful_res);
1708 
1709  // save current value of resource
1710  GUIenv->SetValue(res.Data(), value);
1711 
1712  // save resource for future use if possible
1713  if (ful_res.Length()) GUIenv->SetValue(ful_res.Data(), value);
1714 
1716 }
1717 
1718 
1719 
1720 
1725 
1727 {
1728  // Handles resource file ".KVDataAnalysisGUIrc"
1729  //
1730  // We return the current value of the resource "name"
1731 
1732  TString res = name;
1733  res.Prepend("KVDataAnalysisLauncher.");
1734  return GUIenv->GetValue(res.Data(), defaultvalue);
1735 }
1736 
1737 
1738 
1739 
1752 
1754 {
1755  // Handles resource file ".KVDataAnalysisGUIrc"
1756  //
1757  // We look for a stored value of the resource "name" corresponding to the current
1758  // values of all the resources which come before "name" in the list :
1759  // Repository
1760  // DataSet
1761  // Task
1762  // These values are stored in resources with names like:
1763  // KVDataAnalysisLauncher.[name].[repository].[dataset]...
1764  //
1765  // If no stored value is found, the defaultvalue is returned
1766 
1767  TString res, ful_res;
1768 
1769  BuildResourceName(name, res, ful_res);
1770 
1771  if (!ful_res.Length()) {
1772  return GUIenv->GetValue(res.Data(), defaultvalue);
1773  }
1774 
1775  return GUIenv->GetValue(ful_res.Data(), defaultvalue);
1776 }
1777 
1778 
1779 
1780 
1783 
1785 {
1786  // Get the system name for the batch name
1787 
1788  TString tmp = GetSystem();
1789  if (tmp == "All") return GetSystem();
1790  return GetDataAnalyser()->SystemBatchName();
1791 }
1792 
1793 
1794 
1795 
1822 
1823 void KVDataAnalysisLauncher::BuildResourceName(const TString& name, TString& cur_res, TString& saved_res)
1824 {
1825  // Build the full resource names for storing DataSet, Task, etc.
1826  //
1827  // We store the current state of the interface using the following resource names:
1828  //
1829  // "name" "cur_res"
1830  // Repository KVDataAnalysisLauncher.Repository
1831  // DataSet KVDataAnalysisLauncher.DataSet
1832  // Task KVDataAnalysisLauncher.Task
1833  // UserClass KVDataAnalysisLauncher.UserClass
1834  // UserClassOptions KVDataAnalysisLauncher.UserClassOptions
1835  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1836  //
1837  // We also keep a "memory" of all selected configurations using the following
1838  // resource names:
1839  //
1840  // "name" "saved_res"
1841  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1842  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1843  //
1844  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1845  //
1846  // If name = "Repository", saved_res="" as we do not save it.
1847  // If the resource cannot be saved because one of the resources that is needed to form the
1848  // full resource name has not been set, saved_res="".
1849 
1850  //Resource name for current value
1851  cur_res = name;
1852  cur_res.Prepend("KVDataAnalysisLauncher.");
1853 
1854  //Build full name for save
1855  Int_t index = -1;
1856  saved_res = "";
1857  // look for resource name in list ResourceNames
1858  TObject* resource = 0;
1859  if ((resource = ResourceNames.FindObject(name))) {
1860  //get index in resource table
1861  index = ResourceNames.IndexOf(resource);
1862  }
1863 
1864  if (index == 0) { // resource name = "Repository"; nothing more to do
1865  return;
1866  }
1867 
1868  if (index == -1) index = NbResNames; // force loop to end of list
1869 
1870  // resource name is written in format KVDataAnalysisLauncher.[name].[repository]....
1871  // where the suffixed resource values are all those in the list before the named resource
1872  // i.e. for name = "Task" we write the resource KVDataAnalysisLauncher.Task.[repository].[dataset]
1873 
1874  saved_res = cur_res;
1875  TIter next_res(&ResourceNames);
1876  Int_t i = 0;
1877  Bool_t ok = kTRUE;
1878 
1879  while ((resource = next_res()) && (i++ < index)) {
1880 
1881  TString tmp(GetResource(resource->GetName()));
1882  TString res;
1883  if (tmp == "") {
1884  // one of required resources is not set - none of following resources will be set either
1885  // we cannot save this resource
1886  ok = kFALSE;
1887  break;
1888  }
1889  if (!strcmp(resource->GetName(), "Task") && current_dataset) {
1890  // translate title to name for task
1892  if (tsk) res.Form(".%s", tsk->GetName());
1893  }
1894  else {
1895  res = GetResource(resource->GetName()).Prepend(".");
1896  }
1897  saved_res += res;
1898  }
1899  if (name == "UserClassOptions") {
1900  if (GetResource("UserClass", "").Length())
1901  saved_res += GetResource("UserClass", "").Prepend(".");
1902  else ok = kFALSE;
1903  }
1904 
1905  if (!ok) saved_res = "";
1906 }
1907 
1908 
1909 
1910 
1918 
1920 {
1921  // Look at files in working directory & deduce list of user analysis classes.
1922  // We look for any file ending in '.h'. If we can find a corresponding '.cpp' or '.C' or '.cxx',
1923  // we consider that it is a user analysis class. This list is used to fill the "User Class"
1924  // drop-down list.
1925  // We add "[NEW]" at the end of the list: if selected, this will generate a new user analysis
1926  // class for the currently selected data & analysis task
1927 
1928  TSystemDirectory dir("LocDir", ".");
1929  unique_ptr<TList> lf(dir.GetListOfFiles());
1930  if (!lf.get()) return;
1931  UserClassNames->Clear();
1932  //loop over file names
1933  TIter next(lf.get());
1934  while (TObject* file = next()) {
1935 
1936  // fill list with all '.h' files
1937  TString tmp(file->GetName());
1938  if (tmp.EndsWith(".h")) {
1939  //strip '.h' from filename
1940  tmp.Remove(tmp.Index(".h"));
1941  UserClassNames->Add(new TNamed(tmp.Data(), tmp.Data()));
1942  }
1943 
1944  }
1945 
1946  // now check that implementation files exist for all '.h' we found
1947  TIter next_cl(UserClassNames);
1948  KVString imp, dec;
1949  while (TNamed* clh = (TNamed*)next_cl()) {
1950  if (!KVBase::FindClassSourceFiles(clh->GetName(), imp, dec)) clh->SetName("_INVALID_");
1951  }
1952  // remove all invalid class names
1953  while (TObject* obj = UserClassNames->FindObject("_INVALID_")) {
1954  UserClassNames->Remove(obj);
1955  delete obj;
1956  }
1957  // add [NEW] to list
1958  UserClassNames->Add(new TNamed("[NEW]", "[NEW]"));
1959 }
1960 
1961 
1962 
1963 
1966 
1968 {
1969  // Sets the list of all available user classes in the drop down list
1970 
1971 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1973 #else
1975 #endif
1976  cbUserClass->Select(-1);
1977 
1978  Int_t nbcl = UserClassNames->GetEntries();
1979  Int_t i = 0;
1980  cbUserClass->AddEntry("", i++);
1981  while (i < nbcl + 1) {
1982  cbUserClass->AddEntry(UserClassNames->At(i - 1)->GetName(), i);
1983  i++;
1984  }
1985  cbUserClass->Layout();
1986 }
1987 
1988 
1989 
1990 
1994 
1996 {
1997  // Called when a user class is selected in the combo box.
1998  // Updates batch name if 'auto batch name' is selected.
1999 
2000  if (class_name == "[NEW]") {
2002  return;
2003  }
2004 
2005  // save resource
2006  SetResource("UserClassOptions", teUserOptions->GetText());
2007  SetResource("UserClass", class_name);
2008  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2009  SetResource("UserClassOptions", teUserOptions->GetText());
2010  if (strcmp("", class_name)) {
2013  }
2014  else btEditClass->SetEnabled(kFALSE);
2016 }
2017 
2018 
2019 
2026 
2028 {
2029  // called when user selects [NEW] in user class list
2030  // we generate a new analysis class for currently selected data & task
2031  // the source files are opened in the $EDITOR
2032  // the new class is selected for the analysis
2033 
2034  // Get name of new class
2035  TString classname;
2036  Bool_t ok;
2037  new KVInputDialog(this, "Enter name of new analysis class", &classname, &ok, "Enter name of new analysis class");
2038  // check new classname is not name of existing class
2039  KVString impfile, decfile;
2040  if (KVBase::FindClassSourceFiles(classname, impfile, decfile)) {
2041  ok = ok && WarningBox("Replacing existing class",
2042  Form("%s is the name of an existing class defined in [%s,%s].\nDo you want to overwrite this class?\n(All existing code will be lost)",
2043  classname.Data(), decfile.Data(), impfile.Data()),
2044  kTRUE);
2045  }
2046  if (ok) {
2047  // user class generation depends on gDataSet being set
2048  gDataSet=current_dataset;
2049  current_dataset->MakeAnalysisClass(GetTask(), classname);
2051  }
2052  SetUserClassList();
2053  if (ok) {
2054  SetUserClass(classname);
2056  }
2057 }
2058 
2059 
2060 
2061 
2066 
2068 {
2069  // Sets selected user class in combo box according to e.g. a previously stored resource value.
2070  // We update the resource corresponding to the current state of the interface.
2071 
2072  // look for user class in list
2073  TGLBEntry* e = cbUserClass->FindEntry(class_name);
2074 
2075  if (e) {
2076  Int_t i = e->EntryId();
2077 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
2078  cbUserClass->Select(i);
2079 #else
2080  cbUserClass->Select(i, kFALSE);
2081 #endif
2082  // save current user class options
2083  // save current user class
2084  SetResource("UserClass", class_name);
2085  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2087  }
2088 
2089  else
2090  // unknown user class
2091  {
2092  cbUserClass->Select(-1);
2093  SetResource("UserClass", "");
2094 
2096  }
2098 }
2099 
2100 
2101 
2102 
2105 
2107 {
2108  // Returns currently selected user class name
2109 
2111  return e->GetText()->GetString();
2112  }
2113  else {
2114  return "";
2115  }
2116 }
2117 
2118 
2119 
2120 
2123 
2125 {
2126  // Remove all entries from user class combo box & disable text entry
2127 
2128 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
2130 #else
2132 #endif
2133  cbUserClass->Select(-1);
2136 }
2137 
2138 
2139 
2140 
2145 
2147 {
2148  // Reenable user class combo box & text entry,
2149  // fill list with all known user classes & select the one corresponding
2150  // to the current environment
2151 
2152 
2153  SetUserClassList();
2154  SetUserClass(GetSavedResource("UserClass", ""));
2157 }
2158 
2159 
2160 
2165 
2167 {
2168  // If environment variable $EDITOR is set, and if the currently selected
2169  // user class has available source files, we open them in the
2170  // user's favourite editor
2171 
2172  TString editor = gSystem->Getenv("EDITOR");
2173  if (editor == "") return;
2174  TString uclass = GetUserClass();
2175  if (uclass == "") return;
2176  KVString imp, dec;
2177  if (!KVBase::FindClassSourceFiles(uclass, imp, dec)) return;
2178  gSystem->Exec(Form("%s %s %s &", editor.Data(), imp.Data(), dec.Data()));
2179 }
2180 
2181 
2182 
2187 
2189 {
2190  // For analysis tasks which perform data conversions (raw -> recon, dst -> recon, ...)
2191  // clicking on this button will select all of the runs of the currently selected system(s)
2192  // which have not yet been converted.
2193 
2195  DeselectAll();
2196  if (stage_sel) {
2197  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2199  }
2200 }
2201 
2202 
2203 
2211 
2213 {
2214  // Called when 'Stage selection' button is pressed, for conversion jobs
2215  // which generate 'target' files from 'source' files.
2216  //
2217  // Open small GUI for user to choose:
2218  // - stage selection (i.e. select all 'source' files for which no 'target' file exists)
2219  // - date selection (i.e. select all 'source ' files for which 'target' file is outside given date range)
2220 
2221  if (fStageSelections.IsEmpty()) {
2222  fStageSelections.SetValue("Missing", true);
2223  fStageSelections.SetValue("Date", false);
2224  fStageSelections.SetValue(" - earliest", KVDatime().AsSQLString());
2225  fStageSelections.SetValue(" - latest", KVDatime().AsSQLString());
2226  }
2227  Bool_t cancel = false;
2228  auto param_gui = new KVNameValueListGUI(this, &fStageSelections, &cancel);
2229  param_gui->MutuallyExclusive({"Missing", "Date"});
2230  param_gui->EnableDependingOnBool(" - earliest", "Date");
2231  param_gui->EnableDependingOnBool(" - latest", "Date");
2232  param_gui->DisplayDialog();
2233  if (!cancel) {
2234  if (fStageSelections.GetBoolValue("Date")) {
2235  std::optional<KVDatime> Dmin, Dmax;
2236  if (!fStageSelections.GetTStringValue(" - earliest").IsWhitespace())
2237  Dmin = KVDatime(fStageSelections.GetTStringValue(" - earliest"), KVDatime::kSQL);
2238  if (!fStageSelections.GetTStringValue(" - latest").IsWhitespace())
2241  DeselectAll();
2242  if (stage_sel) {
2243  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2245  }
2246  }
2247  else if (fStageSelections.GetBoolValue("Missing")) {
2249  }
2250  }
2251 }
2252 
2253 
2254 
2257 
2259 {
2260  // Update available runs for current selected task (=datatype)
2261 
2263  // this will cause system list to be refilled in accordance with new available runfiles
2264  SetTask(GetTask());
2265 }
2266 
2267 
2268 
2269 
2274 
2276 {
2277  // Called when user presses "Runlist" button.
2278  // Open dialogue box in which a runlist can be entered.
2279  // The runs in the runlist will be selected.
2280 
2281  TString runs = listOfRuns.AsString();
2282  Bool_t ok = kFALSE;
2283  new KVInputDialog(this, "Enter list of runs", &runs, &ok);
2284  if (ok) {
2285  DeselectAll();
2286  SetRuns(runs.Data());
2287  }
2288 }
2289 
2290 
2291 
2292 
2297 
2299 {
2300  // Called when the selected runs in TGListView lvRuns change.
2301  // We update the run_index_list listOfRuns according to the current selection
2302  // we modify the limits of the 'runs per job' widget
2303 
2304  listOfRuns.Clear();
2305  auto novolist = lvRuns->GetSelectedObjects();
2306  if (novolist.GetEntries() > 0) {
2307  TIter nxt(&novolist);
2308  KVRunFile* s = 0;
2309  while ((s = (KVRunFile*)nxt())) listOfRuns.Add(s->GetRunIndex());
2310  }
2311 
2312  SetResource("RunsList", listOfRuns.AsString());
2313  if (listOfRuns.GetNValues())
2314  selectedRuns->SetText(Form("%d Selected Run%s : %s",
2316  listOfRuns.GetNValues() > 1 ? "s" : "",
2317  listOfRuns.AsString(MAX_LENGTH_SELECTED_RUNS).Data()));
2318  else
2319  selectedRuns->SetText(" ");
2321 }
2322 
2323 
2324 
2325 
2328 
2330 {
2331  // Empty displayed list of selected runs
2332  listOfRuns.Clear();
2333  SetResource("RunsList", "");
2334  selectedRuns->SetText(" ");
2336 }
2337 
2338 
int Int_t
unsigned int UInt_t
kVerticalFrame
kHorizontalFrame
ROOT::R::TRInterface & r
#define e(i)
bool Bool_t
char Char_t
constexpr Bool_t kFALSE
constexpr Bool_t kTRUE
R__EXTERN TEnv * gEnv
kEnvUser
kButtonDown
kButtonUp
#define gClient
kFDOpen
kLHintsRight
kLHintsExpandY
kLHintsLeft
kLHintsCenterY
kLHintsCenterX
kLHintsTop
kLHintsExpandX
kMBNo
kMBYes
kMBIconExclamation
kTextLeft
kTextBottom
kTextRight
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t sel
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize fs
char name[80]
char * Form(const char *fmt,...)
char * StrDup(const char *str)
R__EXTERN TSystem * gSystem
kS_IFDIR
virtual const Char_t * GetType() const
Definition: KVBase.h:177
static Bool_t FindClassSourceFiles(const KVString &class_name, KVString &imp_file, KVString &dec_file, const KVString &dir_name=".")
Definition: KVBase.cpp:1096
KVBatchSystem * GetDefaultBatchSystem() const
KVBatchSystem * GetBatchSystem(const Char_t *name)
Get batch system by name.
Utility GUI used for setting batch system parameters.
void Clear(Option_t *opt="") override
void cd()
Make this the default batch system.
virtual void SetBatchSystemParameters(const KVNameValueList &)
Use the parameters in the list to set all relevant parameters for batch system.
virtual void GetBatchSystemParameterList(KVNameValueList &)
Description of an experimental run in database ,,.
Definition: KVDBRun.h:41
Database class used to store information on different colliding systems studied during an experiment....
Definition: KVDBSystem.h:51
virtual void Run()
Check all task variables, then run analyser.
void SetBatchSystem(KVBatchSystem *bs)
void SetUserClassOptions(const Char_t *o="")
void SetUserLibraries(const Char_t *libs=0)
void SetAnalysisTask(KVDataAnalysisTask *at)
void SetUserClass(const UserClass &kvs, Bool_t check=kTRUE)
static KVDataAnalyser * GetAnalyser(const Char_t *plugin)
void SetUserIncludes(const Char_t *incDirs=0)
Bool_t IsUserClassValid() const
void SetNbEventToRead(Long64_t nb=0)
GUI for running data analysis tasks.
KVList ResourceNames
used by Get/SetResource
TString GetUserClass()
Returns currently selected user class name.
TList * UserClassNames
list of user classes present in working directory
void SetUserClassList()
Sets the list of all available user classes in the drop down list.
void SetRepositoryList(void)
Sets the list of all possible repositories in the repository combo box.
void DeselectAll(void)
Deselect all runs currently in the displayed list of runs.
void SetSystem(const TString &s="")
void Process(void)
Run the analysis task.
void SetTaskList(const TString &s)
void SetDataSet(const TString &ds="")
void SetUserClass(const Char_t *)
void UpdateAvailableRuns()
Update available runs for current selected task (=datatype)
Int_t NbResNames
number of names in list
void DisableUserClassList()
Remove all entries from user class combo box & disable text entry.
void SetUserIncludes(void)
Set the User's includes.
void SetTask(const TString &t="")
TString GetResource(const TString &name, const TString &defaultvalue="")
TString SystemBatchName()
Get the system name for the batch name.
void SetDataSetList(const TString &repository)
Sets the list of all available data sets in the data sets combo box.
void BuildResourceName(const TString &name, TString &, TString &)
void UserClassSelected(const TString &)
void ClearListOfSelectedRuns()
Empty displayed list of selected runs.
TString GetSavedResource(const TString &name, const TString &defaultvalue="")
Bool_t WarningBox(const char *title="Warning", const char *msg="Warning", Bool_t confirm=kFALSE)
void SelectAll(void)
Select all runs currently in the displayed list of runs.
KVDataSetAnalyser * GetDataAnalyser(KVDataAnalysisTask *task=0)
void SetResource(const TString &name, const TString &value)
void SetRuns(const TString &s="")
void SetUserLibraries(void)
Set the User's libraries.
TEnv * GUIenv
Declaration des boutons de la fenetre principale.
void SetRepository(const TString &r="")
Define and manage data analysis tasks.
KVString GetOutputDataType() const
virtual Bool_t WithUserClass() const
virtual const Char_t * GetDataAnalyser() const
virtual const Char_t * GetUserBaseClass() const
virtual const Char_t * GetPrereq() const
Manages access to one or more data repositories.
const KVSeqCollection * GetListOfRepositories() const
KVDataSetRepository * GetRepository(const TString &name) const
Pilots user analysis of experimental data.
void SetDataSet(KVDataSet *ds)
void SetRuns(const run_index_list &nl, Bool_t check=kTRUE)
void SetSystem(KVDBSystem *syst)
Set the System used in the analysis.
TString SystemBatchName() const
void SetFullRunList(const run_index_list &nl)
Int_t GetNavailable() const
KVDataSet * GetDataSet(Int_t) const
Return pointer to DataSet using index in list of all datasets, index>=0.
KVDataSet * GetAvailableDataSet(Int_t) const
run_index_list GetRunList(const Char_t *data_type, const KVDBSystem *sys=0) const
Definition: KVDataSet.cpp:1792
run_index_list GetRunList_DateSelection(const TString &type, const KVUnownedList &systems, std::optional< KVDatime > min_date=std::nullopt, std::optional< KVDatime > max_date=std::nullopt)
Definition: KVDataSet.cpp:1232
KVDataAnalysisTask * GetAnalysisTask(Int_t) const
Definition: KVDataSet.cpp:581
ValType GetDataSetEnv(const Char_t *type, const ValType &defval) const
Definition: KVDataSet.h:270
KVList GetListOfAvailableRunFilesForSystem(const TString &datatype, KVDBSystem *systol)
Definition: KVDataSet.cpp:636
Int_t GetNtasks() const
Definition: KVDataSet.cpp:566
KVExpDB * GetDataBase(const TString &opt="") const
Definition: KVDataSet.cpp:288
run_index_list GetRunList_StageSelection(const TString &other_type, const TString &base_type, KVDBSystem *sys=0, Bool_t OnlyCol=kFALSE)
Definition: KVDataSet.cpp:1286
void cd() const
Definition: KVDataSet.cpp:775
void UpdateAvailableRuns(const KVString &type)
Definition: KVDataSet.cpp:1100
bool MakeAnalysisClass(const Char_t *task, const Char_t *classname)
Definition: KVDataSet.cpp:2049
KVUnownedList GetListOfAvailableSystems(const TString &datatype)
Definition: KVDataSet.cpp:596
Extension of TDatime to handle various useful date formats.
Definition: KVDatime.h:33
@ kSQL
Definition: KVDatime.h:44
run_index_list SetRunIndexListFromString(const TString &) const
Definition: KVExpDB.cpp:913
virtual KVSeqCollection * GetSystems() const
Definition: KVExpDB.h:168
Directory dialogue box for KVDataAnalysisLauncher.
void Init(const TString &fileList, const TString &title) override
init window
KVGDirectoryList(const TString &st, const TString &titre="File list", const TGWindow *p=0, const TGWindow *main=0, Bool_t ok=kTRUE)
Createur.
TString GetFileFromDialog(void) override
Gets the file name from a TGFileDialog.
Bool_t CanAdd(const TString &s) override
tells whether the file in ths string fn can be added to the list box
File dialogue box for KVDataAnalysisLauncher.
KVGFileList(const TString &st, const TString &titre="File list", const TGWindow *p=0, const TGWindow *main=0, Bool_t ok=kTRUE)
Createur.
TGTextEntry * teFileName
void RemoveFiles()
Remove all the selected files from the TGListBox.
TGTextButton * boutRem
~KVGFileList()
Destructeur.
virtual TString GetFileFromDialog()
Gets the file name from a TGFileDialog.
void Done()
build the file list string from the content of the TGListBox
virtual void Init(const TString &fileList, const TString &title)
Init window.
TGTextButton * boutAllRem
void RemoveAllFiles()
Remove all the files from the TGListBox.
TGTextButton * boutAdd
virtual Bool_t CanAdd(const TString &s)
tells whether the file in ths string fn can be added to the list box
TGListBox * lbFileList
General purpose dialog box asking for some input in the form of a string.
Definition: KVInputDialog.h:24
Enhanced version of ROOT TGListView widget.
Definition: KVListView.h:146
virtual void SelectAll()
Definition: KVListView.h:185
virtual void UnSelectAll()
Definition: KVListView.h:189
void ActivateItemsWithColumnData(const Char_t *colname, const KVNumberList &data, Bool_t activate=kTRUE)
Definition: KVListView.h:230
virtual void Display(const TCollection *l)
Definition: KVListView.h:173
KVUnownedList GetSelectedObjects() const
Definition: KVListView.h:252
TObject * GetLastSelectedObject() const
Definition: KVListView.h:238
void ActivateItemWithColumnData(const Char_t *colname, const Char_t *data, Bool_t activate=kTRUE)
Definition: KVListView.h:218
virtual void RemoveAll()
Definition: KVListView.h:193
GUI for setting KVNameValueList parameters.
void SetValue(const Char_t *name, value_type value)
void SetFromEnv(TEnv *tenv, const TString &prefix="")
Int_t GetNpar() const
return the number of stored parameters
Bool_t IsEmpty() const
Bool_t HasBoolParameter(const Char_t *name) const
Bool_t GetBoolValue(const Char_t *name) const
TString GetTStringValue(const Char_t *name) const
void WriteToEnv(TEnv *tenv, const TString &prefix="")
Description of an individual data file in an experimental dataset.
Definition: KVRunFile.h:19
TObject * FindObject(const char *name) const override
Int_t GetSize() const override
void Clear(Option_t *option="") override
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Definition: KVString.h:73
void Begin(TString delim) const
Definition: KVString.cpp:565
Bool_t End() const
Definition: KVString.cpp:634
KVString Next(Bool_t strip_whitespace=kFALSE) const
Definition: KVString.cpp:695
virtual void AddAll(const TCollection *col)
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
virtual Bool_t IsEmpty() const
virtual const char * GetValue(const char *name, const char *dflt) const
virtual void SetValue(const char *name, const char *value, EEnvLevel level=kEnvChange, const char *type=nullptr)
virtual void SaveLevel(EEnvLevel level)
static TClass * Class()
virtual void SetToolTipText(const char *text, Long_t delayms=400)
virtual void SetEnabled(Bool_t e=kTRUE)
void WaitFor(TGWindow *w)
void NeedRedraw(TGWindow *w, Bool_t force=kFALSE)
virtual Int_t GetSelected() const
void Layout() override
void RemoveAll() override
virtual TGLBEntry * GetSelectedEntry() const
virtual void Select(Int_t id, Bool_t emit=kTRUE)
virtual void SetEnabled(Bool_t on=kTRUE)
virtual TGLBEntry * FindEntry(const char *s) const
virtual void AddEntry(const char *s, Int_t id)
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
void MapSubwindows() override
void Layout() override
virtual void RemoveAll()
char * fFilename
const char ** fFileTypes
char * fIniDir
virtual void Resize(TGDimension size)
void MapRaised() override
void SetTextJustify(Int_t tmode)
void SetText(const char *newText)
virtual void RemoveEntry(Int_t id=-1)
virtual void AddEntry(const char *s, Int_t id)
void Layout() override
virtual TGLBEntry * GetEntry(Int_t id) const
virtual void GetSelectedEntries(TList *selected)
virtual void RemoveEntries(Int_t from_ID, Int_t to_ID)
virtual TGLBEntry * FindEntry(const char *s) const
virtual void CloseWindow()
virtual void SetIntNumber(Long_t val, Bool_t emit=kTRUE)
virtual Long_t GetIntNumber() const
virtual Double_t GetNumber() const
TGClient * fClient
virtual void SetText(const TString &new_label)
const char * GetText() const
void SetEnabled(Bool_t flag=kTRUE)
virtual void SetText(const char *text, Bool_t emit=kTRUE)
void Clear(Option_t *option="") override
TObject * FindObject(const char *name) const override
void Add(TObject *obj) override
TObject * Remove(const TObjLinkPtr_t &lnk)
TObject * At(Int_t idx) const override
const char * GetName() const override
const char * GetTitle() const override
static TClass * Class()
virtual const char * GetName() const
virtual void Warning(const char *method, const char *msgfmt,...) const
virtual void Info(const char *method, const char *msgfmt,...) const
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
virtual Int_t IndexOf(const TObject *obj) const
Ssiz_t Length() const
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
const char * Data() const
Bool_t IsNull() const
TString & Prepend(char c, Ssiz_t rep=1)
Bool_t IsWhitespace() const
void Form(const char *fmt,...)
TString & Remove(EStripType s, char c)
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual TList * GetListOfFiles() const
virtual void Unload(const char *module)
virtual const char * Getenv(const char *env)
virtual const char * GetIncludePath()
virtual Int_t Exec(const char *shellcmd)
virtual void SetIncludePath(const char *includePath)
virtual int GetPathInfo(const char *path, FileStat_t &buf)
virtual const char * HostName()
virtual char * ExpandPathName(const char *path)
virtual Bool_t ProcessEvents()
List of runfiles specified by run number and file index ,.
TString AsString(Int_t maxlen=0) const
Int_t GetNValues() const
void Add(const run_index_t &r)
long long Long64_t
void box(Int_t pat, Double_t x1, Double_t y1, Double_t x2, Double_t y2)
int main(int argc, char **argv)
const Int_t n
ClassImp(TPyArg)