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 "KVDataRepository.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 
1162  if (gDataRepository->IsRemote()) {
1163  cout << "Checking connection to remote repository." << endl;
1164  if (!gDataRepository->IsConnected()) {
1165  cout << "Connection to server refused" << endl;
1166  cout << "Process aborted." << endl;
1167  WarningBox("Connection refused", "Connection to server refused\nProcess aborted.");
1168  return;
1169  }
1170  }
1171 
1173  KVDataSetAnalyser* datan = GetDataAnalyser(task);
1174  bool online_analysis = !strcmp(task->GetPrereq(), "*");
1175 
1176  //set global pointer to analyser
1177  gDataAnalyser = datan;
1178 
1179  datan->SetDataSet(current_dataset);
1180  datan->SetAnalysisTask(task);
1181  if (listOfRuns.GetNValues()) {
1182  datan->SetRuns(listOfRuns, kFALSE);
1183  datan->SetFullRunList(listOfRuns);
1184  }
1185  else if (!online_analysis) {
1186  WarningBox("Empty Run List", "The list of runs to process is empty.");
1187  return;
1188  }
1189 
1190  if (fUserIncludes.Length()) {
1192  }
1193  if (fUserLibraries.Length()) {
1195  }
1196 
1197  //Need a user class for the analysis ?
1198  TString kvs(GetUserClass());
1199  if (task->WithUserClass()) {
1200  //read user's class name from input box
1201  if (kvs.Length()) {
1203  datan->SetUserClass({kvs}, checkCompilation);
1204  if (datan->IsUserClassValid())
1206  else {
1207  // compilation failed. abort processing.
1208  delete ia;
1209  ia = 0;
1211  if (WarningBox("Compilation failed", "Please correct mistakes in user analysis class", kTRUE)) EditUserClassFiles();
1212  return;
1213  }
1214  }
1215  else {
1216  delete ia;
1217  ia = 0;
1219  WarningBox("No User Class", "Please enter the user analysis class name.");
1220  return;
1221  }
1222  }
1223  else if (strcmp(task->GetUserBaseClass(), "")) {
1224  //task with default "user" class (i.e. UserClass=no but UserClass.BaseClass!="")
1225  datan->SetUserClass({task->GetUserBaseClass()}, kFALSE);
1226  }
1227  Long64_t nbEventRead = (Long64_t)teNbToRead->GetIntNumber();
1228  // if in batch and nbEventRead>0, ask confirmation
1229  if (IsBatch() && nbEventRead) {
1230  if (!WarningBox("Read all events in batch mode?",
1231  "This will submit batch jobs which will not read all events.\nAre you sure that is what you want?",
1232  kTRUE)) {
1233  delete ia;
1234  ia = 0;
1235  return;
1236  }
1237  }
1238  // check batch parameters have been set
1239  if (IsBatch()
1240  && (!fBatchParameters.GetNpar() // never set
1241  // previously set with MultiJobsMode turned off (perhaps to read a single run), whereas we now have many runs to read
1242  || (fBatchParameters.HasBoolParameter("MultiJobsMode") && !fBatchParameters.GetBoolValue("MultiJobsMode") && listOfRuns.GetNValues() > 1))
1243  ) {
1244  if (!SetBatchParameters()) return; //abort analysis if user pressed cancel
1245  }
1247  SetResource("RunsList", listOfRuns.AsString());
1248  SetResource("UserClassOptions", teUserOptions->GetText());
1249  SetResource("NbEventsToRead", Form("%.0f", teNbToRead->GetNumber()));
1251 
1252  // before submitting the job(s), we make sure that the database for the current dataset
1253  // has been fully built, we don't want each job trying to do it (especially for batch/PROOFlite jobs)
1254  current_dataset->cd();
1255 
1256  // submit jobs for each selected system
1257  for (auto it : listofSelectedSystems) {
1258  auto sys = (KVDBSystem*)it;
1259 
1260  // build up runfile list for system
1261  run_index_list sys_run_list;
1262  for (auto it_r : sys->GetRuns()) {
1263  // keep all system runfiles in user's selection
1264  auto runfiles_for_run = dynamic_cast<KVDBRun*>(it_r)->GetRunIndexList();
1265  sys_run_list += runfiles_for_run && listOfRuns;
1266  }
1267  if (sys_run_list) {
1268  if (IsBatch()) {
1269  gBatchSystem->Clear();
1271  datan->SetBatchSystem(gBatchSystem);
1272  }
1273  else {
1274  datan->SetBatchSystem(nullptr);
1275  }
1276  datan->SetRuns(sys_run_list, false);
1277  datan->Run();
1278  }
1279  }
1280 
1281  gSystem->SetIncludePath(oriIncludePath.Data());
1282 }
1283 
1284 
1285 
1287 
1289 {
1291  return e->GetText()->GetString();
1292  }
1293  else {
1294  return "";
1295  }
1296 }
1297 
1298 
1299 
1301 
1303 {
1305  return e->GetText()->GetString();
1306  }
1307  else {
1308  return "";
1309  }
1310 }
1311 
1312 
1313 
1315 
1317 {
1319  return e->GetText()->GetString();
1320  }
1321  else {
1322  return "";
1323  }
1324 }
1325 
1326 
1327 
1329 
1331 {
1332  if (noSystems) return "";
1334  if (sys)
1335  return sys->GetName();
1336  else
1337  return "";
1338 }
1339 
1340 
1341 
1342 
1344 
1346 {
1347  return listOfRuns.AsString();
1348 }
1349 
1350 
1351 
1353 
1355 {
1356  TGLBEntry* e = 0;
1357  if ((e = cbRepository->FindEntry(r))) {
1358  Int_t i = e->EntryId();
1359 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1360  cbRepository->Select(i);
1361 #else
1362  cbRepository->Select(i, kFALSE);
1363 #endif
1364  SetDataSetList(r);
1365  }
1366  else {
1367  SetDataSet();
1368  }
1369 }
1370 
1371 
1372 
1374 
1376 {
1377  if (r.IsNull()) {
1378  //remove all datasets because no repository has been chosen yet
1379 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1381 #else
1382  cbDataSet->RemoveAll();
1383 #endif
1384  cbDataSet->Select(-1);
1385  SetResource("Repository", "");
1386  SetTask();
1387  }
1388  else {
1389  TGLBEntry* e = 0;
1390  if ((e = cbDataSet->FindEntry(r))) {
1391  Int_t i = e->EntryId();
1392 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1393  cbDataSet->Select(i);
1394 #else
1395  cbDataSet->Select(i, kFALSE);
1396 #endif
1397  SetTaskList(r);
1398  }
1399  else {
1400  SetTask();
1401  }
1402  }
1403 }
1404 
1405 
1406 
1408 
1410 {
1411  if (r.IsNull()) {
1412  //remove all tasks from list because no dataset chosen yet
1413 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1414  RemoveAll(cbTask);
1415 #else
1416  cbTask->RemoveAll();
1417 #endif
1418  cbTask->Select(-1);
1419  SetResource("DataSet", "");
1420  SetSystem();
1421  }
1422  else {
1423  TGLBEntry* e = 0;
1424  if ((e = cbTask->FindEntry(r))) {
1425  Int_t i = e->EntryId();
1426 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1427  cbTask->Select(i);
1428 #else
1429  cbTask->Select(i, kFALSE);
1430 #endif
1431  SetSystemList(i);
1432  }
1433  else {
1434  SetSystem();
1435  }
1436  }
1437 }
1438 
1439 
1440 
1442 
1444 {
1445  if (r.IsNull()) {
1446  //remove all systems from list because no task chosen yet
1447  lvSystems->RemoveAll();
1448  SetResource("Task", "");
1449  //empty list of analysis classes and disable it
1451  SetRuns();
1452  lvRuns->RemoveAll();
1453  list_of_runs.Clear();
1454  }
1455  else {
1458  }
1459 }
1460 
1461 
1462 
1468 
1470 {
1471  //KVDBSystem* system = (KVDBSystem*)lvSystems->GetLastSelectedObject();
1472  //if (system == lastSelectedSystem) return;
1473  //lastSelectedSystem = system;
1474  //GetDataAnalyser()->SetSystem(system);
1477  lastSelectedSystem = nullptr;
1478  else
1480  SetRunsList();
1481 }
1482 
1483 
1484 
1486 
1488 {
1489  if (r.IsNull()) {
1491  SetResource("Trigger", "All");
1492  SetResource("RunsList", "");
1493  }
1494  else {
1496  if (listOfRuns.GetNValues()) {
1498  SetResource("RunsList", listOfRuns.AsString());
1499  }
1501  }
1502 }
1503 
1504 
1505 
1509 
1511 {
1512  // Set the resource KVDataAnalysisLauncher.Batch according
1513  // to whether button 'Batch' is down or up
1514 
1515  if (IsBatch()) withBatch->SetText("BatchMode: On");
1516  else withBatch->SetText("BatchMode: Off");
1517  GUIenv->SetValue("KVDataAnalysisLauncher.Batch", IsBatch());
1520 }
1521 
1522 
1523 
1527 
1529 {
1530  // Open dialog to set batch parameters for job
1531  // returns kFALSE if cancel is pressed
1532 
1534  // use saved values of batch parameters
1535  fBatchParameters.SetFromEnv(GUIenv, "KVDataAnalysisLauncher");
1536  Bool_t cancel;
1537  // make sure runlist is set in analyser (controls multijobs mode)
1541  if (!cancel) {
1542  // update saved batch parameter resources
1543  fBatchParameters.WriteToEnv(GUIenv, "KVDataAnalysisLauncher");
1545  }
1546  return !cancel;
1547 }
1548 
1549 
1550 
1551 
1554 
1556 {
1557  // Set the User's libraries
1558  TString ori = fUserLibraries.Data();
1559  new KVGFileList(fUserLibraries, "User's Libraries",
1560  gClient->GetRoot(), this);
1561  GUIenv->SetValue("KVDataAnalysisLauncher.UserLibraries", fUserLibraries.Data());
1564 }
1565 
1566 
1567 
1570 
1572 {
1573  // Set the User's includes
1574  TString ori = fUserIncludes.Data();
1575  new KVGDirectoryList(fUserIncludes, "User's Includes",
1576  gClient->GetRoot(), this);
1577  GUIenv->SetValue("KVDataAnalysisLauncher.UserIncludes", fUserIncludes.Data());
1580 }
1581 
1582 
1583 
1584 
1590 
1591 Bool_t KVDataAnalysisLauncher::WarningBox(const char* title, const char* msg, Bool_t confirm)
1592 {
1593  // Warning box in case of problems
1594  // if confirm=kTRUE we ask for a yes/no answer from the user:
1595  // if 'yes' is pressed, we return kTRUE, if 'no', kFALSE.
1596  // by default, only a 'dismiss' button is shown, and this method always returns kTRUE.
1597 
1598  Bool_t reply = kTRUE;
1599  if (!confirm)
1600  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation);
1601  else {
1602  Int_t ret_code = 0;
1603  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation, kMBYes | kMBNo, &ret_code);
1604  reply = (ret_code & kMBYes);
1605  }
1606  return reply;
1607 }
1608 
1609 
1610 
1611 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1612 
1615 
1617 {
1618  //replaces functionality of TGComboBox::RemoveAll for ROOT versions < 5.11/02
1619 
1620  Int_t n = box->GetListBox()->GetNumberOfEntries();
1621  if (n) box->RemoveEntries(0, n - 1);
1622  if (box->GetSelectedEntry()) {
1623  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1624  fClient->NeedRedraw(box->GetSelectedEntry());
1625  }
1626  else {
1627  box->GetTextEntry()->SetTitle("");
1628  fClient->NeedRedraw(box->GetTextEntry());
1629  }
1630 }
1631 
1633 
1634 
1637 {
1638  //replaces functionality of TGListBox::RemoveAll for ROOT versions < 5.11/02
1639 
1640  Int_t n = box->GetNumberOfEntries();
1641  if (n) box->RemoveEntries(0, n - 1);
1642  if (box->GetSelectedEntry()) {
1643  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1644  fClient->NeedRedraw(box->GetSelectedEntry());
1645  }
1646 }
1647 
1648 #endif
1649 
1650 
1651 
1682 
1683 void KVDataAnalysisLauncher::SetResource(const TString& name, const TString& value)
1684 {
1685  // Handles resource file ".KVDataAnalysisGUIrc"
1686  // We store the current state of the interface using the following resource names:
1687  //
1688  // Repository KVDataAnalysisLauncher.Repository
1689  // DataSet KVDataAnalysisLauncher.DataSet
1690  // Task KVDataAnalysisLauncher.Task
1691  // System KVDataAnalysisLauncher.System
1692  // Trigger KVDataAnalysisLauncher.Trigger
1693  // RunsList KVDataAnalysisLauncher.RunsList
1694  // UserClass KVDataAnalysisLauncher.UserClass
1695  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector
1696  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1697  //
1698  // We also keep a "memory" of all selected configurations using the following
1699  // resource names:
1700  //
1701  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1702  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1703  // System KVDataAnalysisLauncher.System.[repository].[dataset].[task]
1704  // Trigger KVDataAnalysisLauncher.Trigger.[repository].[dataset].[task].[system]
1705  // RunsList KVDataAnalysisLauncher.RunsList.[repository].[dataset].[task].[system].[trigger]
1706  // UserClass KVDataAnalysisLauncher.UserClass.[repository].[dataset].[task].[system].[trigger]
1707  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector.[repository].[dataset].[task].[system].[trigger]
1708  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead.[repository].[dataset].[task].[system].[trigger]
1709  //
1710  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1711  // N.B.2. [system]: it is the name given by SystemBatchName() which is used in the resource name.
1712  // N.B.3. [trigger]: for the resource name we take "M > 4", "M>=8" "All" etc. and replace all ' ', '>' or '=' by ''
1713  // to give "M4", "M8", "All", etc.
1714 
1715  TString res, ful_res;
1716 
1717  BuildResourceName(name, res, ful_res);
1718 
1719  // save current value of resource
1720  GUIenv->SetValue(res.Data(), value);
1721 
1722  // save resource for future use if possible
1723  if (ful_res.Length()) GUIenv->SetValue(ful_res.Data(), value);
1724 
1726 }
1727 
1728 
1729 
1730 
1735 
1737 {
1738  // Handles resource file ".KVDataAnalysisGUIrc"
1739  //
1740  // We return the current value of the resource "name"
1741 
1742  TString res = name;
1743  res.Prepend("KVDataAnalysisLauncher.");
1744  return GUIenv->GetValue(res.Data(), defaultvalue);
1745 }
1746 
1747 
1748 
1749 
1762 
1764 {
1765  // Handles resource file ".KVDataAnalysisGUIrc"
1766  //
1767  // We look for a stored value of the resource "name" corresponding to the current
1768  // values of all the resources which come before "name" in the list :
1769  // Repository
1770  // DataSet
1771  // Task
1772  // These values are stored in resources with names like:
1773  // KVDataAnalysisLauncher.[name].[repository].[dataset]...
1774  //
1775  // If no stored value is found, the defaultvalue is returned
1776 
1777  TString res, ful_res;
1778 
1779  BuildResourceName(name, res, ful_res);
1780 
1781  if (!ful_res.Length()) {
1782  return GUIenv->GetValue(res.Data(), defaultvalue);
1783  }
1784 
1785  return GUIenv->GetValue(ful_res.Data(), defaultvalue);
1786 }
1787 
1788 
1789 
1790 
1793 
1795 {
1796  // Get the system name for the batch name
1797 
1798  TString tmp = GetSystem();
1799  if (tmp == "All") return GetSystem();
1800  return GetDataAnalyser()->SystemBatchName();
1801 }
1802 
1803 
1804 
1805 
1832 
1833 void KVDataAnalysisLauncher::BuildResourceName(const TString& name, TString& cur_res, TString& saved_res)
1834 {
1835  // Build the full resource names for storing DataSet, Task, etc.
1836  //
1837  // We store the current state of the interface using the following resource names:
1838  //
1839  // "name" "cur_res"
1840  // Repository KVDataAnalysisLauncher.Repository
1841  // DataSet KVDataAnalysisLauncher.DataSet
1842  // Task KVDataAnalysisLauncher.Task
1843  // UserClass KVDataAnalysisLauncher.UserClass
1844  // UserClassOptions KVDataAnalysisLauncher.UserClassOptions
1845  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1846  //
1847  // We also keep a "memory" of all selected configurations using the following
1848  // resource names:
1849  //
1850  // "name" "saved_res"
1851  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1852  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1853  //
1854  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1855  //
1856  // If name = "Repository", saved_res="" as we do not save it.
1857  // If the resource cannot be saved because one of the resources that is needed to form the
1858  // full resource name has not been set, saved_res="".
1859 
1860  //Resource name for current value
1861  cur_res = name;
1862  cur_res.Prepend("KVDataAnalysisLauncher.");
1863 
1864  //Build full name for save
1865  Int_t index = -1;
1866  saved_res = "";
1867  // look for resource name in list ResourceNames
1868  TObject* resource = 0;
1869  if ((resource = ResourceNames.FindObject(name))) {
1870  //get index in resource table
1871  index = ResourceNames.IndexOf(resource);
1872  }
1873 
1874  if (index == 0) { // resource name = "Repository"; nothing more to do
1875  return;
1876  }
1877 
1878  if (index == -1) index = NbResNames; // force loop to end of list
1879 
1880  // resource name is written in format KVDataAnalysisLauncher.[name].[repository]....
1881  // where the suffixed resource values are all those in the list before the named resource
1882  // i.e. for name = "Task" we write the resource KVDataAnalysisLauncher.Task.[repository].[dataset]
1883 
1884  saved_res = cur_res;
1885  TIter next_res(&ResourceNames);
1886  Int_t i = 0;
1887  Bool_t ok = kTRUE;
1888 
1889  while ((resource = next_res()) && (i++ < index)) {
1890 
1891  TString tmp(GetResource(resource->GetName()));
1892  TString res;
1893  if (tmp == "") {
1894  // one of required resources is not set - none of following resources will be set either
1895  // we cannot save this resource
1896  ok = kFALSE;
1897  break;
1898  }
1899  if (!strcmp(resource->GetName(), "Task") && current_dataset) {
1900  // translate title to name for task
1902  if (tsk) res.Form(".%s", tsk->GetName());
1903  }
1904  else {
1905  res = GetResource(resource->GetName()).Prepend(".");
1906  }
1907  saved_res += res;
1908  }
1909  if (name == "UserClassOptions") {
1910  if (GetResource("UserClass", "").Length())
1911  saved_res += GetResource("UserClass", "").Prepend(".");
1912  else ok = kFALSE;
1913  }
1914 
1915  if (!ok) saved_res = "";
1916 }
1917 
1918 
1919 
1920 
1928 
1930 {
1931  // Look at files in working directory & deduce list of user analysis classes.
1932  // We look for any file ending in '.h'. If we can find a corresponding '.cpp' or '.C' or '.cxx',
1933  // we consider that it is a user analysis class. This list is used to fill the "User Class"
1934  // drop-down list.
1935  // We add "[NEW]" at the end of the list: if selected, this will generate a new user analysis
1936  // class for the currently selected data & analysis task
1937 
1938  TSystemDirectory dir("LocDir", ".");
1939  unique_ptr<TList> lf(dir.GetListOfFiles());
1940  if (!lf.get()) return;
1941  UserClassNames->Clear();
1942  //loop over file names
1943  TIter next(lf.get());
1944  while (TObject* file = next()) {
1945 
1946  // fill list with all '.h' files
1947  TString tmp(file->GetName());
1948  if (tmp.EndsWith(".h")) {
1949  //strip '.h' from filename
1950  tmp.Remove(tmp.Index(".h"));
1951  UserClassNames->Add(new TNamed(tmp.Data(), tmp.Data()));
1952  }
1953 
1954  }
1955 
1956  // now check that implementation files exist for all '.h' we found
1957  TIter next_cl(UserClassNames);
1958  KVString imp, dec;
1959  while (TNamed* clh = (TNamed*)next_cl()) {
1960  if (!KVBase::FindClassSourceFiles(clh->GetName(), imp, dec)) clh->SetName("_INVALID_");
1961  }
1962  // remove all invalid class names
1963  while (TObject* obj = UserClassNames->FindObject("_INVALID_")) {
1964  UserClassNames->Remove(obj);
1965  delete obj;
1966  }
1967  // add [NEW] to list
1968  UserClassNames->Add(new TNamed("[NEW]", "[NEW]"));
1969 }
1970 
1971 
1972 
1973 
1976 
1978 {
1979  // Sets the list of all available user classes in the drop down list
1980 
1981 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1983 #else
1985 #endif
1986  cbUserClass->Select(-1);
1987 
1988  Int_t nbcl = UserClassNames->GetEntries();
1989  Int_t i = 0;
1990  cbUserClass->AddEntry("", i++);
1991  while (i < nbcl + 1) {
1992  cbUserClass->AddEntry(UserClassNames->At(i - 1)->GetName(), i);
1993  i++;
1994  }
1995  cbUserClass->Layout();
1996 }
1997 
1998 
1999 
2000 
2004 
2006 {
2007  // Called when a user class is selected in the combo box.
2008  // Updates batch name if 'auto batch name' is selected.
2009 
2010  if (class_name == "[NEW]") {
2012  return;
2013  }
2014 
2015  // save resource
2016  SetResource("UserClassOptions", teUserOptions->GetText());
2017  SetResource("UserClass", class_name);
2018  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2019  SetResource("UserClassOptions", teUserOptions->GetText());
2020  if (strcmp("", class_name)) {
2023  }
2024  else btEditClass->SetEnabled(kFALSE);
2026 }
2027 
2028 
2029 
2036 
2038 {
2039  // called when user selects [NEW] in user class list
2040  // we generate a new analysis class for currently selected data & task
2041  // the source files are opened in the $EDITOR
2042  // the new class is selected for the analysis
2043 
2044  // Get name of new class
2045  TString classname;
2046  Bool_t ok;
2047  new KVInputDialog(this, "Enter name of new analysis class", &classname, &ok, "Enter name of new analysis class");
2048  // check new classname is not name of existing class
2049  KVString impfile, decfile;
2050  if (KVBase::FindClassSourceFiles(classname, impfile, decfile)) {
2051  ok = ok && WarningBox("Replacing existing class",
2052  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)",
2053  classname.Data(), decfile.Data(), impfile.Data()),
2054  kTRUE);
2055  }
2056  if (ok) {
2057  current_dataset->MakeAnalysisClass(GetTask(), classname);
2059  }
2060  SetUserClassList();
2061  if (ok) {
2062  SetUserClass(classname);
2064  }
2065 }
2066 
2067 
2068 
2069 
2074 
2076 {
2077  // Sets selected user class in combo box according to e.g. a previously stored resource value.
2078  // We update the resource corresponding to the current state of the interface.
2079 
2080  // look for user class in list
2081  TGLBEntry* e = cbUserClass->FindEntry(class_name);
2082 
2083  if (e) {
2084  Int_t i = e->EntryId();
2085 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
2086  cbUserClass->Select(i);
2087 #else
2088  cbUserClass->Select(i, kFALSE);
2089 #endif
2090  // save current user class options
2091  // save current user class
2092  SetResource("UserClass", class_name);
2093  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2095  }
2096 
2097  else
2098  // unknown user class
2099  {
2100  cbUserClass->Select(-1);
2101  SetResource("UserClass", "");
2102 
2104  }
2106 }
2107 
2108 
2109 
2110 
2113 
2115 {
2116  // Returns currently selected user class name
2117 
2119  return e->GetText()->GetString();
2120  }
2121  else {
2122  return "";
2123  }
2124 }
2125 
2126 
2127 
2128 
2131 
2133 {
2134  // Remove all entries from user class combo box & disable text entry
2135 
2136 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
2138 #else
2140 #endif
2141  cbUserClass->Select(-1);
2144 }
2145 
2146 
2147 
2148 
2153 
2155 {
2156  // Reenable user class combo box & text entry,
2157  // fill list with all known user classes & select the one corresponding
2158  // to the current environment
2159 
2160 
2161  SetUserClassList();
2162  SetUserClass(GetSavedResource("UserClass", ""));
2165 }
2166 
2167 
2168 
2173 
2175 {
2176  // If environment variable $EDITOR is set, and if the currently selected
2177  // user class has available source files, we open them in the
2178  // user's favourite editor
2179 
2180  TString editor = gSystem->Getenv("EDITOR");
2181  if (editor == "") return;
2182  TString uclass = GetUserClass();
2183  if (uclass == "") return;
2184  KVString imp, dec;
2185  if (!KVBase::FindClassSourceFiles(uclass, imp, dec)) return;
2186  gSystem->Exec(Form("%s %s %s &", editor.Data(), imp.Data(), dec.Data()));
2187 }
2188 
2189 
2190 
2195 
2197 {
2198  // For analysis tasks which perform data conversions (raw -> recon, dst -> recon, ...)
2199  // clicking on this button will select all of the runs of the currently selected system(s)
2200  // which have not yet been converted.
2201 
2203  DeselectAll();
2204  if (stage_sel) {
2205  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2207  }
2208 }
2209 
2210 
2211 
2219 
2221 {
2222  // Called when 'Stage selection' button is pressed, for conversion jobs
2223  // which generate 'target' files from 'source' files.
2224  //
2225  // Open small GUI for user to choose:
2226  // - stage selection (i.e. select all 'source' files for which no 'target' file exists)
2227  // - date selection (i.e. select all 'source ' files for which 'target' file is outside given date range)
2228 
2229  if (fStageSelections.IsEmpty()) {
2230  fStageSelections.SetValue("Missing", true);
2231  fStageSelections.SetValue("Date", false);
2232  fStageSelections.SetValue(" - earliest", KVDatime().AsSQLString());
2233  fStageSelections.SetValue(" - latest", KVDatime().AsSQLString());
2234  }
2235  Bool_t cancel = false;
2236  auto param_gui = new KVNameValueListGUI(this, &fStageSelections, &cancel);
2237  param_gui->MutuallyExclusive({"Missing", "Date"});
2238  param_gui->EnableDependingOnBool(" - earliest", "Date");
2239  param_gui->EnableDependingOnBool(" - latest", "Date");
2240  param_gui->DisplayDialog();
2241  if (!cancel) {
2242  if (fStageSelections.GetBoolValue("Date")) {
2243  std::optional<KVDatime> Dmin, Dmax;
2244  if (!fStageSelections.GetTStringValue(" - earliest").IsWhitespace())
2245  Dmin = KVDatime(fStageSelections.GetTStringValue(" - earliest"), KVDatime::kSQL);
2246  if (!fStageSelections.GetTStringValue(" - latest").IsWhitespace())
2249  DeselectAll();
2250  if (stage_sel) {
2251  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2253  }
2254  }
2255  else if (fStageSelections.GetBoolValue("Missing")) {
2257  }
2258  }
2259 }
2260 
2261 
2262 
2265 
2267 {
2268  // Update available runs for current selected task (=datatype)
2269 
2271  // this will cause system list to be refilled in accordance with new available runfiles
2272  SetTask(GetTask());
2273 }
2274 
2275 
2276 
2277 
2282 
2284 {
2285  // Called when user presses "Runlist" button.
2286  // Open dialogue box in which a runlist can be entered.
2287  // The runs in the runlist will be selected.
2288 
2289  TString runs = listOfRuns.AsString();
2290  Bool_t ok = kFALSE;
2291  new KVInputDialog(this, "Enter list of runs", &runs, &ok);
2292  if (ok) {
2293  DeselectAll();
2294  SetRuns(runs.Data());
2295  }
2296 }
2297 
2298 
2299 
2300 
2305 
2307 {
2308  // Called when the selected runs in TGListView lvRuns change.
2309  // We update the run_index_list listOfRuns according to the current selection
2310  // we modify the limits of the 'runs per job' widget
2311 
2312  listOfRuns.Clear();
2313  auto novolist = lvRuns->GetSelectedObjects();
2314  if (novolist.GetEntries() > 0) {
2315  TIter nxt(&novolist);
2316  KVRunFile* s = 0;
2317  while ((s = (KVRunFile*)nxt())) listOfRuns.Add(s->GetRunIndex());
2318  }
2319 
2320  SetResource("RunsList", listOfRuns.AsString());
2321  if (listOfRuns.GetNValues())
2322  selectedRuns->SetText(Form("%d Selected Run%s : %s",
2324  listOfRuns.GetNValues() > 1 ? "s" : "",
2325  listOfRuns.AsString(MAX_LENGTH_SELECTED_RUNS).Data()));
2326  else
2327  selectedRuns->SetText(" ");
2329 }
2330 
2331 
2332 
2333 
2336 
2338 {
2339  // Empty displayed list of selected runs
2340  listOfRuns.Clear();
2341  SetResource("RunsList", "");
2342  selectedRuns->SetText(" ");
2344 }
2345 
2346 
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:176
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.
KVDataRepository * GetRepository(const Char_t *name) const
const TList * GetListOfRepositories() const
virtual Bool_t IsRemote() const
Returns kTRUE for remote repositories, kFALSE for local repositories.
virtual Bool_t IsConnected()
Always returns kTRUE for local repositories.
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)
virtual Int_t GetNavailable() const
KVDataSet * GetDataSet(Int_t) const
Return pointer to DataSet using index in list of all datasets, index>=0.
virtual KVDataSet * GetAvailableDataSet(Int_t) const
run_index_list GetRunList(const Char_t *data_type, const KVDBSystem *sys=0) const
Definition: KVDataSet.cpp:1818
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:1222
KVDataAnalysisTask * GetAnalysisTask(Int_t) const
Definition: KVDataSet.cpp:576
ValType GetDataSetEnv(const Char_t *type, const ValType &defval) const
Definition: KVDataSet.h:269
KVList GetListOfAvailableRunFilesForSystem(const TString &datatype, KVDBSystem *systol)
Definition: KVDataSet.cpp:631
virtual Int_t GetNtasks() const
Definition: KVDataSet.cpp:561
KVExpDB * GetDataBase(const TString &opt="") const
Definition: KVDataSet.cpp:290
run_index_list GetRunList_StageSelection(const TString &other_type, const TString &base_type, KVDBSystem *sys=0, Bool_t OnlyCol=kFALSE)
Definition: KVDataSet.cpp:1276
void cd() const
Definition: KVDataSet.cpp:770
void UpdateAvailableRuns(const KVString &type)
Definition: KVDataSet.cpp:1090
bool MakeAnalysisClass(const Char_t *task, const Char_t *classname)
Definition: KVDataSet.cpp:1956
KVUnownedList GetListOfAvailableSystems(const TString &datatype)
Definition: KVDataSet.cpp:591
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:159
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)