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  KVError::Warning(this, "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  auto data_reader = current_dataset->GetDataSetEnv<TString>(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  // Of course this will invalidate all pointers to objects in or associated with the database...
1245  if(current_dataset!=gDataSet || current_database->IsMinimal())
1246  {
1247  std::vector<std::string> selected_system_names;
1248  for (auto it : listofSelectedSystems) {
1249  selected_system_names.push_back(it->GetName());
1250  }
1252  auto list_of_runs_backup = listOfRuns;
1253  current_dataset->cd();
1254  current_database = gExpDB;
1255  // we now have (potentially) a new database with all new objects & pointers...
1256  SetTask(GetSavedResource("Task", ""));// this will update the list of systems & runs
1257  for(auto& sys_name : selected_system_names){
1258  //listofSelectedSystems.Add(gExpDB->GetSystem(sys_name.c_str()));
1259  SetSystem(sys_name.c_str());
1260  }
1261  SetRuns(list_of_runs_backup.AsString());
1262  Process();
1263  return;
1264  }
1265 
1266  // submit jobs for each selected system
1267  for (auto it : listofSelectedSystems) {
1268  auto sys = (KVDBSystem*)it;
1269 
1270  // build up runfile list for system
1271  run_index_list sys_run_list;
1272  for (auto it_r : sys->GetRuns()) {
1273  // keep all system runfiles in user's selection
1274  auto runfiles_for_run = dynamic_cast<KVDBRun*>(it_r)->GetRunIndexList();
1275  sys_run_list += runfiles_for_run && listOfRuns;
1276  }
1277  if (sys_run_list) {
1278  if (IsBatch()) {
1279  gBatchSystem->Clear();
1281  datan->SetBatchSystem(gBatchSystem);
1282  }
1283  else {
1284  datan->SetBatchSystem(nullptr);
1285  }
1286  std::cout << "data_analyser dataset before SetRuns = " << datan->GetDataSet() << std::endl;
1287  datan->SetRuns(sys_run_list, false);
1288  datan->Run();
1289  }
1290  }
1291 
1292  gSystem->SetIncludePath(oriIncludePath.Data());
1293 }
1294 
1295 
1296 
1298 
1300 {
1302  return e->GetText()->GetString();
1303  }
1304  else {
1305  return "";
1306  }
1307 }
1308 
1309 
1310 
1312 
1314 {
1316  return e->GetText()->GetString();
1317  }
1318  else {
1319  return "";
1320  }
1321 }
1322 
1323 
1324 
1326 
1328 {
1330  return e->GetText()->GetString();
1331  }
1332  else {
1333  return "";
1334  }
1335 }
1336 
1337 
1338 
1340 
1342 {
1343  if (noSystems) return "";
1345  if (sys)
1346  return sys->GetName();
1347  else
1348  return "";
1349 }
1350 
1351 
1352 
1353 
1355 
1357 {
1358  return listOfRuns.AsString();
1359 }
1360 
1361 
1362 
1364 
1366 {
1367  TGLBEntry* e = 0;
1368  if ((e = cbRepository->FindEntry(r))) {
1369  Int_t i = e->EntryId();
1370 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1371  cbRepository->Select(i);
1372 #else
1373  cbRepository->Select(i, kFALSE);
1374 #endif
1375  SetDataSetList(r);
1376  }
1377  else {
1378  SetDataSet();
1379  }
1380 }
1381 
1382 
1383 
1385 
1387 {
1388  if (r.IsNull()) {
1389  //remove all datasets because no repository has been chosen yet
1390 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1392 #else
1393  cbDataSet->RemoveAll();
1394 #endif
1395  cbDataSet->Select(-1);
1396  SetResource("Repository", "");
1397  SetTask();
1398  }
1399  else {
1400  TGLBEntry* e = 0;
1401  if ((e = cbDataSet->FindEntry(r))) {
1402  Int_t i = e->EntryId();
1403 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1404  cbDataSet->Select(i);
1405 #else
1406  cbDataSet->Select(i, kFALSE);
1407 #endif
1408  SetTaskList(r);
1409  }
1410  else {
1411  SetTask();
1412  }
1413  }
1414 }
1415 
1416 
1417 
1419 
1421 {
1422  if (r.IsNull()) {
1423  //remove all tasks from list because no dataset chosen yet
1424 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1425  RemoveAll(cbTask);
1426 #else
1427  cbTask->RemoveAll();
1428 #endif
1429  cbTask->Select(-1);
1430  SetResource("DataSet", "");
1431  SetSystem();
1432  }
1433  else {
1434  TGLBEntry* e = 0;
1435  if ((e = cbTask->FindEntry(r))) {
1436  Int_t i = e->EntryId();
1437 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1438  cbTask->Select(i);
1439 #else
1440  cbTask->Select(i, kFALSE);
1441 #endif
1442  SetSystemList(i);
1443  }
1444  else {
1445  SetSystem();
1446  }
1447  }
1448 }
1449 
1450 
1451 
1453 
1455 {
1456  if (r.IsNull()) {
1457  //remove all systems from list because no task chosen yet
1458  lvSystems->RemoveAll();
1459  SetResource("Task", "");
1460  //empty list of analysis classes and disable it
1462  SetRuns();
1463  lvRuns->RemoveAll();
1464  list_of_runs.Clear();
1465  }
1466  else {
1469  }
1470 }
1471 
1472 
1473 
1479 
1481 {
1482  //KVDBSystem* system = (KVDBSystem*)lvSystems->GetLastSelectedObject();
1483  //if (system == lastSelectedSystem) return;
1484  //lastSelectedSystem = system;
1485  //GetDataAnalyser()->SetSystem(system);
1488  lastSelectedSystem = nullptr;
1489  else
1491  SetRunsList();
1492 }
1493 
1494 
1495 
1497 
1499 {
1500  if (r.IsNull()) {
1502  SetResource("Trigger", "All");
1503  SetResource("RunsList", "");
1504  }
1505  else {
1507  if (listOfRuns.GetNValues()) {
1509  SetResource("RunsList", listOfRuns.AsString());
1510  }
1512  }
1513 }
1514 
1515 
1516 
1520 
1522 {
1523  // Set the resource KVDataAnalysisLauncher.Batch according
1524  // to whether button 'Batch' is down or up
1525 
1526  if (IsBatch()) withBatch->SetText("BatchMode: On");
1527  else withBatch->SetText("BatchMode: Off");
1528  GUIenv->SetValue("KVDataAnalysisLauncher.Batch", IsBatch());
1531 }
1532 
1533 
1534 
1538 
1540 {
1541  // Open dialog to set batch parameters for job
1542  // returns kFALSE if cancel is pressed
1543 
1545  // use saved values of batch parameters
1546  fBatchParameters.SetFromEnv(GUIenv, "KVDataAnalysisLauncher");
1547  Bool_t cancel;
1548  // make sure runlist is set in analyser (controls multijobs mode)
1552  if (!cancel) {
1553  // update saved batch parameter resources
1554  fBatchParameters.WriteToEnv(GUIenv, "KVDataAnalysisLauncher");
1556  }
1557  return !cancel;
1558 }
1559 
1560 
1561 
1562 
1565 
1567 {
1568  // Set the User's libraries
1569  TString ori = fUserLibraries.Data();
1570  new KVGFileList(fUserLibraries, "User's Libraries",
1571  gClient->GetRoot(), this);
1572  GUIenv->SetValue("KVDataAnalysisLauncher.UserLibraries", fUserLibraries.Data());
1575 }
1576 
1577 
1578 
1581 
1583 {
1584  // Set the User's includes
1585  TString ori = fUserIncludes.Data();
1586  new KVGDirectoryList(fUserIncludes, "User's Includes",
1587  gClient->GetRoot(), this);
1588  GUIenv->SetValue("KVDataAnalysisLauncher.UserIncludes", fUserIncludes.Data());
1591 }
1592 
1593 
1594 
1595 
1601 
1602 Bool_t KVDataAnalysisLauncher::WarningBox(const char* title, const char* msg, Bool_t confirm)
1603 {
1604  // Warning box in case of problems
1605  // if confirm=kTRUE we ask for a yes/no answer from the user:
1606  // if 'yes' is pressed, we return kTRUE, if 'no', kFALSE.
1607  // by default, only a 'dismiss' button is shown, and this method always returns kTRUE.
1608 
1609  Bool_t reply = kTRUE;
1610  if (!confirm)
1611  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation);
1612  else {
1613  Int_t ret_code = 0;
1614  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation, kMBYes | kMBNo, &ret_code);
1615  reply = (ret_code & kMBYes);
1616  }
1617  return reply;
1618 }
1619 
1620 
1621 
1622 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1623 
1626 
1628 {
1629  //replaces functionality of TGComboBox::RemoveAll for ROOT versions < 5.11/02
1630 
1631  Int_t n = box->GetListBox()->GetNumberOfEntries();
1632  if (n) box->RemoveEntries(0, n - 1);
1633  if (box->GetSelectedEntry()) {
1634  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1635  fClient->NeedRedraw(box->GetSelectedEntry());
1636  }
1637  else {
1638  box->GetTextEntry()->SetTitle("");
1639  fClient->NeedRedraw(box->GetTextEntry());
1640  }
1641 }
1642 
1644 
1645 
1648 {
1649  //replaces functionality of TGListBox::RemoveAll for ROOT versions < 5.11/02
1650 
1651  Int_t n = box->GetNumberOfEntries();
1652  if (n) box->RemoveEntries(0, n - 1);
1653  if (box->GetSelectedEntry()) {
1654  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1655  fClient->NeedRedraw(box->GetSelectedEntry());
1656  }
1657 }
1658 
1659 #endif
1660 
1661 
1662 
1693 
1694 void KVDataAnalysisLauncher::SetResource(const TString& name, const TString& value)
1695 {
1696  // Handles resource file ".KVDataAnalysisGUIrc"
1697  // We store the current state of the interface using the following resource names:
1698  //
1699  // Repository KVDataAnalysisLauncher.Repository
1700  // DataSet KVDataAnalysisLauncher.DataSet
1701  // Task KVDataAnalysisLauncher.Task
1702  // System KVDataAnalysisLauncher.System
1703  // Trigger KVDataAnalysisLauncher.Trigger
1704  // RunsList KVDataAnalysisLauncher.RunsList
1705  // UserClass KVDataAnalysisLauncher.UserClass
1706  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector
1707  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1708  //
1709  // We also keep a "memory" of all selected configurations using the following
1710  // resource names:
1711  //
1712  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1713  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1714  // System KVDataAnalysisLauncher.System.[repository].[dataset].[task]
1715  // Trigger KVDataAnalysisLauncher.Trigger.[repository].[dataset].[task].[system]
1716  // RunsList KVDataAnalysisLauncher.RunsList.[repository].[dataset].[task].[system].[trigger]
1717  // UserClass KVDataAnalysisLauncher.UserClass.[repository].[dataset].[task].[system].[trigger]
1718  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector.[repository].[dataset].[task].[system].[trigger]
1719  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead.[repository].[dataset].[task].[system].[trigger]
1720  //
1721  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1722  // N.B.2. [system]: it is the name given by SystemBatchName() which is used in the resource name.
1723  // N.B.3. [trigger]: for the resource name we take "M > 4", "M>=8" "All" etc. and replace all ' ', '>' or '=' by ''
1724  // to give "M4", "M8", "All", etc.
1725 
1726  TString res, ful_res;
1727 
1728  BuildResourceName(name, res, ful_res);
1729 
1730  // save current value of resource
1731  GUIenv->SetValue(res.Data(), value);
1732 
1733  // save resource for future use if possible
1734  if (ful_res.Length()) GUIenv->SetValue(ful_res.Data(), value);
1735 
1737 }
1738 
1739 
1740 
1741 
1746 
1748 {
1749  // Handles resource file ".KVDataAnalysisGUIrc"
1750  //
1751  // We return the current value of the resource "name"
1752 
1753  TString res = name;
1754  res.Prepend("KVDataAnalysisLauncher.");
1755  return GUIenv->GetValue(res.Data(), defaultvalue);
1756 }
1757 
1758 
1759 
1760 
1773 
1775 {
1776  // Handles resource file ".KVDataAnalysisGUIrc"
1777  //
1778  // We look for a stored value of the resource "name" corresponding to the current
1779  // values of all the resources which come before "name" in the list :
1780  // Repository
1781  // DataSet
1782  // Task
1783  // These values are stored in resources with names like:
1784  // KVDataAnalysisLauncher.[name].[repository].[dataset]...
1785  //
1786  // If no stored value is found, the defaultvalue is returned
1787 
1788  TString res, ful_res;
1789 
1790  BuildResourceName(name, res, ful_res);
1791 
1792  if (!ful_res.Length()) {
1793  return GUIenv->GetValue(res.Data(), defaultvalue);
1794  }
1795 
1796  return GUIenv->GetValue(ful_res.Data(), defaultvalue);
1797 }
1798 
1799 
1800 
1801 
1804 
1806 {
1807  // Get the system name for the batch name
1808 
1809  TString tmp = GetSystem();
1810  if (tmp == "All") return GetSystem();
1811  return GetDataAnalyser()->SystemBatchName();
1812 }
1813 
1814 
1815 
1816 
1843 
1844 void KVDataAnalysisLauncher::BuildResourceName(const TString& name, TString& cur_res, TString& saved_res)
1845 {
1846  // Build the full resource names for storing DataSet, Task, etc.
1847  //
1848  // We store the current state of the interface using the following resource names:
1849  //
1850  // "name" "cur_res"
1851  // Repository KVDataAnalysisLauncher.Repository
1852  // DataSet KVDataAnalysisLauncher.DataSet
1853  // Task KVDataAnalysisLauncher.Task
1854  // UserClass KVDataAnalysisLauncher.UserClass
1855  // UserClassOptions KVDataAnalysisLauncher.UserClassOptions
1856  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1857  //
1858  // We also keep a "memory" of all selected configurations using the following
1859  // resource names:
1860  //
1861  // "name" "saved_res"
1862  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1863  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1864  //
1865  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1866  //
1867  // If name = "Repository", saved_res="" as we do not save it.
1868  // If the resource cannot be saved because one of the resources that is needed to form the
1869  // full resource name has not been set, saved_res="".
1870 
1871  //Resource name for current value
1872  cur_res = name;
1873  cur_res.Prepend("KVDataAnalysisLauncher.");
1874 
1875  //Build full name for save
1876  Int_t index = -1;
1877  saved_res = "";
1878  // look for resource name in list ResourceNames
1879  TObject* resource = 0;
1880  if ((resource = ResourceNames.FindObject(name))) {
1881  //get index in resource table
1882  index = ResourceNames.IndexOf(resource);
1883  }
1884 
1885  if (index == 0) { // resource name = "Repository"; nothing more to do
1886  return;
1887  }
1888 
1889  if (index == -1) index = NbResNames; // force loop to end of list
1890 
1891  // resource name is written in format KVDataAnalysisLauncher.[name].[repository]....
1892  // where the suffixed resource values are all those in the list before the named resource
1893  // i.e. for name = "Task" we write the resource KVDataAnalysisLauncher.Task.[repository].[dataset]
1894 
1895  saved_res = cur_res;
1896  TIter next_res(&ResourceNames);
1897  Int_t i = 0;
1898  Bool_t ok = kTRUE;
1899 
1900  while ((resource = next_res()) && (i++ < index)) {
1901 
1902  TString tmp(GetResource(resource->GetName()));
1903  TString res;
1904  if (tmp == "") {
1905  // one of required resources is not set - none of following resources will be set either
1906  // we cannot save this resource
1907  ok = kFALSE;
1908  break;
1909  }
1910  if (!strcmp(resource->GetName(), "Task") && current_dataset) {
1911  // translate title to name for task
1913  if (tsk) res.Form(".%s", tsk->GetName());
1914  }
1915  else {
1916  res = GetResource(resource->GetName()).Prepend(".");
1917  }
1918  saved_res += res;
1919  }
1920  if (name == "UserClassOptions") {
1921  if (GetResource("UserClass", "").Length())
1922  saved_res += GetResource("UserClass", "").Prepend(".");
1923  else ok = kFALSE;
1924  }
1925 
1926  if (!ok) saved_res = "";
1927 }
1928 
1929 
1930 
1931 
1939 
1941 {
1942  // Look at files in working directory & deduce list of user analysis classes.
1943  // We look for any file ending in '.h'. If we can find a corresponding '.cpp' or '.C' or '.cxx',
1944  // we consider that it is a user analysis class. This list is used to fill the "User Class"
1945  // drop-down list.
1946  // We add "[NEW]" at the end of the list: if selected, this will generate a new user analysis
1947  // class for the currently selected data & analysis task
1948 
1949  TSystemDirectory dir("LocDir", ".");
1950  unique_ptr<TList> lf(dir.GetListOfFiles());
1951  if (!lf.get()) return;
1952  UserClassNames->Clear();
1953  //loop over file names
1954  TIter next(lf.get());
1955  while (TObject* file = next()) {
1956 
1957  // fill list with all '.h' files
1958  TString tmp(file->GetName());
1959  if (tmp.EndsWith(".h")) {
1960  //strip '.h' from filename
1961  tmp.Remove(tmp.Index(".h"));
1962  UserClassNames->Add(new TNamed(tmp.Data(), tmp.Data()));
1963  }
1964 
1965  }
1966 
1967  // now check that implementation files exist for all '.h' we found
1968  TIter next_cl(UserClassNames);
1969  KVString imp, dec;
1970  while (TNamed* clh = (TNamed*)next_cl()) {
1971  if (!KVBase::FindClassSourceFiles(clh->GetName(), imp, dec)) clh->SetName("_INVALID_");
1972  }
1973  // remove all invalid class names
1974  while (TObject* obj = UserClassNames->FindObject("_INVALID_")) {
1975  UserClassNames->Remove(obj);
1976  delete obj;
1977  }
1978  // add [NEW] to list
1979  UserClassNames->Add(new TNamed("[NEW]", "[NEW]"));
1980 }
1981 
1982 
1983 
1984 
1987 
1989 {
1990  // Sets the list of all available user classes in the drop down list
1991 
1992 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1994 #else
1996 #endif
1997  cbUserClass->Select(-1);
1998 
1999  Int_t nbcl = UserClassNames->GetEntries();
2000  Int_t i = 0;
2001  cbUserClass->AddEntry("", i++);
2002  while (i < nbcl + 1) {
2003  cbUserClass->AddEntry(UserClassNames->At(i - 1)->GetName(), i);
2004  i++;
2005  }
2006  cbUserClass->Layout();
2007 }
2008 
2009 
2010 
2011 
2015 
2017 {
2018  // Called when a user class is selected in the combo box.
2019  // Updates batch name if 'auto batch name' is selected.
2020 
2021  if (class_name == "[NEW]") {
2023  return;
2024  }
2025 
2026  // save resource
2027  SetResource("UserClassOptions", teUserOptions->GetText());
2028  SetResource("UserClass", class_name);
2029  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2030  SetResource("UserClassOptions", teUserOptions->GetText());
2031  if (strcmp("", class_name)) {
2034  }
2035  else btEditClass->SetEnabled(kFALSE);
2037 }
2038 
2039 
2040 
2047 
2049 {
2050  // called when user selects [NEW] in user class list
2051  // we generate a new analysis class for currently selected data & task
2052  // the source files are opened in the $EDITOR
2053  // the new class is selected for the analysis
2054 
2055  // Get name of new class
2056  TString classname;
2057  Bool_t ok;
2058  new KVInputDialog(this, "Enter name of new analysis class", &classname, &ok, "Enter name of new analysis class");
2059  // check new classname is not name of existing class
2060  KVString impfile, decfile;
2061  if (KVBase::FindClassSourceFiles(classname, impfile, decfile)) {
2062  ok = ok && WarningBox("Replacing existing class",
2063  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)",
2064  classname.Data(), decfile.Data(), impfile.Data()),
2065  kTRUE);
2066  }
2067  if (ok) {
2068  // user class generation depends on gDataSet being set
2069  gDataSet=current_dataset;
2070  current_dataset->MakeAnalysisClass(GetTask(), classname);
2072  }
2073  SetUserClassList();
2074  if (ok) {
2075  SetUserClass(classname);
2077  }
2078 }
2079 
2080 
2081 
2082 
2087 
2089 {
2090  // Sets selected user class in combo box according to e.g. a previously stored resource value.
2091  // We update the resource corresponding to the current state of the interface.
2092 
2093  // look for user class in list
2094  TGLBEntry* e = cbUserClass->FindEntry(class_name);
2095 
2096  if (e) {
2097  Int_t i = e->EntryId();
2098 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
2099  cbUserClass->Select(i);
2100 #else
2101  cbUserClass->Select(i, kFALSE);
2102 #endif
2103  // save current user class options
2104  // save current user class
2105  SetResource("UserClass", class_name);
2106  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2108  }
2109 
2110  else
2111  // unknown user class
2112  {
2113  cbUserClass->Select(-1);
2114  SetResource("UserClass", "");
2115 
2117  }
2119 }
2120 
2121 
2122 
2123 
2126 
2128 {
2129  // Returns currently selected user class name
2130 
2132  return e->GetText()->GetString();
2133  }
2134  else {
2135  return "";
2136  }
2137 }
2138 
2139 
2140 
2141 
2144 
2146 {
2147  // Remove all entries from user class combo box & disable text entry
2148 
2149 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
2151 #else
2153 #endif
2154  cbUserClass->Select(-1);
2157 }
2158 
2159 
2160 
2161 
2166 
2168 {
2169  // Reenable user class combo box & text entry,
2170  // fill list with all known user classes & select the one corresponding
2171  // to the current environment
2172 
2173 
2174  SetUserClassList();
2175  SetUserClass(GetSavedResource("UserClass", ""));
2178 }
2179 
2180 
2181 
2186 
2188 {
2189  // If environment variable $EDITOR is set, and if the currently selected
2190  // user class has available source files, we open them in the
2191  // user's favourite editor
2192 
2193  TString editor = gSystem->Getenv("EDITOR");
2194  if (editor == "") return;
2195  TString uclass = GetUserClass();
2196  if (uclass == "") return;
2197  KVString imp, dec;
2198  if (!KVBase::FindClassSourceFiles(uclass, imp, dec)) return;
2199  gSystem->Exec(Form("%s %s %s &", editor.Data(), imp.Data(), dec.Data()));
2200 }
2201 
2202 
2203 
2208 
2210 {
2211  // For analysis tasks which perform data conversions (raw -> recon, dst -> recon, ...)
2212  // clicking on this button will select all of the runs of the currently selected system(s)
2213  // which have not yet been converted.
2214 
2216  DeselectAll();
2217  if (stage_sel) {
2218  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2220  }
2221 }
2222 
2223 
2224 
2232 
2234 {
2235  // Called when 'Stage selection' button is pressed, for conversion jobs
2236  // which generate 'target' files from 'source' files.
2237  //
2238  // Open small GUI for user to choose:
2239  // - stage selection (i.e. select all 'source' files for which no 'target' file exists)
2240  // - date selection (i.e. select all 'source ' files for which 'target' file is outside given date range)
2241 
2242  if (fStageSelections.IsEmpty()) {
2243  fStageSelections.SetValue("Missing", true);
2244  fStageSelections.SetValue("Date", false);
2245  fStageSelections.SetValue(" - earliest", KVDatime().AsSQLString());
2246  fStageSelections.SetValue(" - latest", KVDatime().AsSQLString());
2247  }
2248  Bool_t cancel = false;
2249  auto param_gui = new KVNameValueListGUI(this, &fStageSelections, &cancel);
2250  param_gui->MutuallyExclusive({"Missing", "Date"});
2251  param_gui->EnableDependingOnBool(" - earliest", "Date");
2252  param_gui->EnableDependingOnBool(" - latest", "Date");
2253  param_gui->DisplayDialog();
2254  if (!cancel) {
2255  if (fStageSelections.GetBoolValue("Date")) {
2256  std::optional<KVDatime> Dmin, Dmax;
2257  if (!fStageSelections.GetTStringValue(" - earliest").IsWhitespace())
2258  Dmin = KVDatime(fStageSelections.GetTStringValue(" - earliest"), KVDatime::kSQL);
2259  if (!fStageSelections.GetTStringValue(" - latest").IsWhitespace())
2262  DeselectAll();
2263  if (stage_sel) {
2264  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2266  }
2267  }
2268  else if (fStageSelections.GetBoolValue("Missing")) {
2270  }
2271  }
2272 }
2273 
2274 
2275 
2278 
2280 {
2281  // Update available runs for current selected task (=datatype)
2282 
2284  // this will cause system list to be refilled in accordance with new available runfiles
2285  SetTask(GetTask());
2286 }
2287 
2288 
2289 
2290 
2295 
2297 {
2298  // Called when user presses "Runlist" button.
2299  // Open dialogue box in which a runlist can be entered.
2300  // The runs in the runlist will be selected.
2301 
2302  TString runs = listOfRuns.AsString();
2303  Bool_t ok = kFALSE;
2304  new KVInputDialog(this, "Enter list of runs", &runs, &ok);
2305  if (ok) {
2306  DeselectAll();
2307  SetRuns(runs.Data());
2308  }
2309 }
2310 
2311 
2312 
2313 
2318 
2320 {
2321  // Called when the selected runs in TGListView lvRuns change.
2322  // We update the run_index_list listOfRuns according to the current selection
2323  // we modify the limits of the 'runs per job' widget
2324 
2325  listOfRuns.Clear();
2326  auto novolist = lvRuns->GetSelectedObjects();
2327  if (novolist.GetEntries() > 0) {
2328  TIter nxt(&novolist);
2329  KVRunFile* s = 0;
2330  while ((s = (KVRunFile*)nxt())) listOfRuns.Add(s->GetRunIndex());
2331  }
2332 
2333  SetResource("RunsList", listOfRuns.AsString());
2334  if (listOfRuns.GetNValues())
2335  selectedRuns->SetText(Form("%d Selected Run%s : %s",
2337  listOfRuns.GetNValues() > 1 ? "s" : "",
2338  listOfRuns.AsString(MAX_LENGTH_SELECTED_RUNS).Data()));
2339  else
2340  selectedRuns->SetText(" ");
2342 }
2343 
2344 
2345 
2346 
2349 
2351 {
2352  // Empty displayed list of selected runs
2353  listOfRuns.Clear();
2354  SetResource("RunsList", "");
2355  selectedRuns->SetText(" ");
2357 }
2358 
2359 
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:1095
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)
const KVDataSet * GetDataSet() const
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:1795
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:1235
KVDataAnalysisTask * GetAnalysisTask(Int_t) const
Definition: KVDataSet.cpp:584
KVList GetListOfAvailableRunFilesForSystem(const TString &datatype, KVDBSystem *systol)
Definition: KVDataSet.cpp:639
Int_t GetNtasks() const
Definition: KVDataSet.cpp:569
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:1289
void cd() const
Definition: KVDataSet.cpp:778
void UpdateAvailableRuns(const KVString &type)
Definition: KVDataSet.cpp:1103
bool MakeAnalysisClass(const Char_t *task, const Char_t *classname)
Definition: KVDataSet.cpp:2052
ValType GetDataSetEnv(const Char_t *type, const ValType &defval={}) const
Definition: KVDataSet.h:270
KVUnownedList GetListOfAvailableSystems(const TString &datatype)
Definition: KVDataSet.cpp:599
Extension of TDatime to handle various useful date formats.
Definition: KVDatime.h:35
@ kSQL
Definition: KVDatime.h:48
Bool_t IsMinimal() const
Definition: KVExpDB.h:271
virtual KVSeqCollection * GetSystems() const
Definition: KVExpDB.h:168
run_index_list SetRunIndexListFromString(const TString &, bool interpret_run_number_as_whole_run=false) const
Definition: KVExpDB.cpp:922
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:147
virtual void SelectAll()
Definition: KVListView.h:186
virtual void UnSelectAll()
Definition: KVListView.h:190
void ActivateItemsWithColumnData(const Char_t *colname, const KVNumberList &data, Bool_t activate=kTRUE)
Definition: KVListView.h:231
virtual void Display(const TCollection *l)
Definition: KVListView.h:174
KVUnownedList GetSelectedObjects() const
Definition: KVListView.h:253
TObject * GetLastSelectedObject() const
Definition: KVListView.h:239
void ActivateItemWithColumnData(const Char_t *colname, const Char_t *data, Bool_t activate=kTRUE)
Definition: KVListView.h:219
virtual void RemoveAll()
Definition: KVListView.h:194
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 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
void Warning(UserClass p, const char *location, const char *va_(fmt),...)
Definition: KVError.h:125
ClassImp(TPyArg)