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  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 
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  // Of course this will invalidate all pointers to objects in or associated with the database...
1255  if(current_dataset!=gDataSet || current_database->IsMinimal())
1256  {
1257  std::vector<std::string> selected_system_names;
1258  for (auto it : listofSelectedSystems) {
1259  selected_system_names.push_back(it->GetName());
1260  }
1262  auto list_of_runs_backup = listOfRuns;
1263  current_dataset->cd();
1264  current_database = gExpDB;
1265  // we now have (potentially) a new database with all new objects & pointers...
1266  SetTask(GetSavedResource("Task", ""));// this will update the list of systems & runs
1267  for(auto& sys_name : selected_system_names){
1268  //listofSelectedSystems.Add(gExpDB->GetSystem(sys_name.c_str()));
1269  SetSystem(sys_name.c_str());
1270  }
1271  SetRuns(list_of_runs_backup.AsString());
1272  Process();
1273  return;
1274  }
1275 
1276  // submit jobs for each selected system
1277  for (auto it : listofSelectedSystems) {
1278  auto sys = (KVDBSystem*)it;
1279 
1280  // build up runfile list for system
1281  run_index_list sys_run_list;
1282  for (auto it_r : sys->GetRuns()) {
1283  // keep all system runfiles in user's selection
1284  auto runfiles_for_run = dynamic_cast<KVDBRun*>(it_r)->GetRunIndexList();
1285  sys_run_list += runfiles_for_run && listOfRuns;
1286  }
1287  if (sys_run_list) {
1288  if (IsBatch()) {
1289  gBatchSystem->Clear();
1291  datan->SetBatchSystem(gBatchSystem);
1292  }
1293  else {
1294  datan->SetBatchSystem(nullptr);
1295  }
1296  std::cout << "data_analyser dataset before SetRuns = " << datan->GetDataSet() << std::endl;
1297  datan->SetRuns(sys_run_list, false);
1298  datan->Run();
1299  }
1300  }
1301 
1302  gSystem->SetIncludePath(oriIncludePath.Data());
1303 }
1304 
1305 
1306 
1308 
1310 {
1312  return e->GetText()->GetString();
1313  }
1314  else {
1315  return "";
1316  }
1317 }
1318 
1319 
1320 
1322 
1324 {
1326  return e->GetText()->GetString();
1327  }
1328  else {
1329  return "";
1330  }
1331 }
1332 
1333 
1334 
1336 
1338 {
1340  return e->GetText()->GetString();
1341  }
1342  else {
1343  return "";
1344  }
1345 }
1346 
1347 
1348 
1350 
1352 {
1353  if (noSystems) return "";
1355  if (sys)
1356  return sys->GetName();
1357  else
1358  return "";
1359 }
1360 
1361 
1362 
1363 
1365 
1367 {
1368  return listOfRuns.AsString();
1369 }
1370 
1371 
1372 
1374 
1376 {
1377  TGLBEntry* e = 0;
1378  if ((e = cbRepository->FindEntry(r))) {
1379  Int_t i = e->EntryId();
1380 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1381  cbRepository->Select(i);
1382 #else
1383  cbRepository->Select(i, kFALSE);
1384 #endif
1385  SetDataSetList(r);
1386  }
1387  else {
1388  SetDataSet();
1389  }
1390 }
1391 
1392 
1393 
1395 
1397 {
1398  if (r.IsNull()) {
1399  //remove all datasets because no repository has been chosen yet
1400 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1402 #else
1403  cbDataSet->RemoveAll();
1404 #endif
1405  cbDataSet->Select(-1);
1406  SetResource("Repository", "");
1407  SetTask();
1408  }
1409  else {
1410  TGLBEntry* e = 0;
1411  if ((e = cbDataSet->FindEntry(r))) {
1412  Int_t i = e->EntryId();
1413 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1414  cbDataSet->Select(i);
1415 #else
1416  cbDataSet->Select(i, kFALSE);
1417 #endif
1418  SetTaskList(r);
1419  }
1420  else {
1421  SetTask();
1422  }
1423  }
1424 }
1425 
1426 
1427 
1429 
1431 {
1432  if (r.IsNull()) {
1433  //remove all tasks from list because no dataset chosen yet
1434 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1435  RemoveAll(cbTask);
1436 #else
1437  cbTask->RemoveAll();
1438 #endif
1439  cbTask->Select(-1);
1440  SetResource("DataSet", "");
1441  SetSystem();
1442  }
1443  else {
1444  TGLBEntry* e = 0;
1445  if ((e = cbTask->FindEntry(r))) {
1446  Int_t i = e->EntryId();
1447 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
1448  cbTask->Select(i);
1449 #else
1450  cbTask->Select(i, kFALSE);
1451 #endif
1452  SetSystemList(i);
1453  }
1454  else {
1455  SetSystem();
1456  }
1457  }
1458 }
1459 
1460 
1461 
1463 
1465 {
1466  if (r.IsNull()) {
1467  //remove all systems from list because no task chosen yet
1468  lvSystems->RemoveAll();
1469  SetResource("Task", "");
1470  //empty list of analysis classes and disable it
1472  SetRuns();
1473  lvRuns->RemoveAll();
1474  list_of_runs.Clear();
1475  }
1476  else {
1479  }
1480 }
1481 
1482 
1483 
1489 
1491 {
1492  //KVDBSystem* system = (KVDBSystem*)lvSystems->GetLastSelectedObject();
1493  //if (system == lastSelectedSystem) return;
1494  //lastSelectedSystem = system;
1495  //GetDataAnalyser()->SetSystem(system);
1498  lastSelectedSystem = nullptr;
1499  else
1501  SetRunsList();
1502 }
1503 
1504 
1505 
1507 
1509 {
1510  if (r.IsNull()) {
1512  SetResource("Trigger", "All");
1513  SetResource("RunsList", "");
1514  }
1515  else {
1517  if (listOfRuns.GetNValues()) {
1519  SetResource("RunsList", listOfRuns.AsString());
1520  }
1522  }
1523 }
1524 
1525 
1526 
1530 
1532 {
1533  // Set the resource KVDataAnalysisLauncher.Batch according
1534  // to whether button 'Batch' is down or up
1535 
1536  if (IsBatch()) withBatch->SetText("BatchMode: On");
1537  else withBatch->SetText("BatchMode: Off");
1538  GUIenv->SetValue("KVDataAnalysisLauncher.Batch", IsBatch());
1541 }
1542 
1543 
1544 
1548 
1550 {
1551  // Open dialog to set batch parameters for job
1552  // returns kFALSE if cancel is pressed
1553 
1555  // use saved values of batch parameters
1556  fBatchParameters.SetFromEnv(GUIenv, "KVDataAnalysisLauncher");
1557  Bool_t cancel;
1558  // make sure runlist is set in analyser (controls multijobs mode)
1562  if (!cancel) {
1563  // update saved batch parameter resources
1564  fBatchParameters.WriteToEnv(GUIenv, "KVDataAnalysisLauncher");
1566  }
1567  return !cancel;
1568 }
1569 
1570 
1571 
1572 
1575 
1577 {
1578  // Set the User's libraries
1579  TString ori = fUserLibraries.Data();
1580  new KVGFileList(fUserLibraries, "User's Libraries",
1581  gClient->GetRoot(), this);
1582  GUIenv->SetValue("KVDataAnalysisLauncher.UserLibraries", fUserLibraries.Data());
1585 }
1586 
1587 
1588 
1591 
1593 {
1594  // Set the User's includes
1595  TString ori = fUserIncludes.Data();
1596  new KVGDirectoryList(fUserIncludes, "User's Includes",
1597  gClient->GetRoot(), this);
1598  GUIenv->SetValue("KVDataAnalysisLauncher.UserIncludes", fUserIncludes.Data());
1601 }
1602 
1603 
1604 
1605 
1611 
1612 Bool_t KVDataAnalysisLauncher::WarningBox(const char* title, const char* msg, Bool_t confirm)
1613 {
1614  // Warning box in case of problems
1615  // if confirm=kTRUE we ask for a yes/no answer from the user:
1616  // if 'yes' is pressed, we return kTRUE, if 'no', kFALSE.
1617  // by default, only a 'dismiss' button is shown, and this method always returns kTRUE.
1618 
1619  Bool_t reply = kTRUE;
1620  if (!confirm)
1621  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation);
1622  else {
1623  Int_t ret_code = 0;
1624  new TGMsgBox(gClient->GetRoot(), this, title, msg, kMBIconExclamation, kMBYes | kMBNo, &ret_code);
1625  reply = (ret_code & kMBYes);
1626  }
1627  return reply;
1628 }
1629 
1630 
1631 
1632 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
1633 
1636 
1638 {
1639  //replaces functionality of TGComboBox::RemoveAll for ROOT versions < 5.11/02
1640 
1641  Int_t n = box->GetListBox()->GetNumberOfEntries();
1642  if (n) box->RemoveEntries(0, n - 1);
1643  if (box->GetSelectedEntry()) {
1644  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1645  fClient->NeedRedraw(box->GetSelectedEntry());
1646  }
1647  else {
1648  box->GetTextEntry()->SetTitle("");
1649  fClient->NeedRedraw(box->GetTextEntry());
1650  }
1651 }
1652 
1654 
1655 
1658 {
1659  //replaces functionality of TGListBox::RemoveAll for ROOT versions < 5.11/02
1660 
1661  Int_t n = box->GetNumberOfEntries();
1662  if (n) box->RemoveEntries(0, n - 1);
1663  if (box->GetSelectedEntry()) {
1664  ((TGTextLBEntry*)box->GetSelectedEntry())->SetTitle("");
1665  fClient->NeedRedraw(box->GetSelectedEntry());
1666  }
1667 }
1668 
1669 #endif
1670 
1671 
1672 
1703 
1704 void KVDataAnalysisLauncher::SetResource(const TString& name, const TString& value)
1705 {
1706  // Handles resource file ".KVDataAnalysisGUIrc"
1707  // We store the current state of the interface using the following resource names:
1708  //
1709  // Repository KVDataAnalysisLauncher.Repository
1710  // DataSet KVDataAnalysisLauncher.DataSet
1711  // Task KVDataAnalysisLauncher.Task
1712  // System KVDataAnalysisLauncher.System
1713  // Trigger KVDataAnalysisLauncher.Trigger
1714  // RunsList KVDataAnalysisLauncher.RunsList
1715  // UserClass KVDataAnalysisLauncher.UserClass
1716  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector
1717  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1718  //
1719  // We also keep a "memory" of all selected configurations using the following
1720  // resource names:
1721  //
1722  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1723  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1724  // System KVDataAnalysisLauncher.System.[repository].[dataset].[task]
1725  // Trigger KVDataAnalysisLauncher.Trigger.[repository].[dataset].[task].[system]
1726  // RunsList KVDataAnalysisLauncher.RunsList.[repository].[dataset].[task].[system].[trigger]
1727  // UserClass KVDataAnalysisLauncher.UserClass.[repository].[dataset].[task].[system].[trigger]
1728  // KVDataSelector KVDataAnalysisLauncher.KVDataSelector.[repository].[dataset].[task].[system].[trigger]
1729  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead.[repository].[dataset].[task].[system].[trigger]
1730  //
1731  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1732  // N.B.2. [system]: it is the name given by SystemBatchName() which is used in the resource name.
1733  // N.B.3. [trigger]: for the resource name we take "M > 4", "M>=8" "All" etc. and replace all ' ', '>' or '=' by ''
1734  // to give "M4", "M8", "All", etc.
1735 
1736  TString res, ful_res;
1737 
1738  BuildResourceName(name, res, ful_res);
1739 
1740  // save current value of resource
1741  GUIenv->SetValue(res.Data(), value);
1742 
1743  // save resource for future use if possible
1744  if (ful_res.Length()) GUIenv->SetValue(ful_res.Data(), value);
1745 
1747 }
1748 
1749 
1750 
1751 
1756 
1758 {
1759  // Handles resource file ".KVDataAnalysisGUIrc"
1760  //
1761  // We return the current value of the resource "name"
1762 
1763  TString res = name;
1764  res.Prepend("KVDataAnalysisLauncher.");
1765  return GUIenv->GetValue(res.Data(), defaultvalue);
1766 }
1767 
1768 
1769 
1770 
1783 
1785 {
1786  // Handles resource file ".KVDataAnalysisGUIrc"
1787  //
1788  // We look for a stored value of the resource "name" corresponding to the current
1789  // values of all the resources which come before "name" in the list :
1790  // Repository
1791  // DataSet
1792  // Task
1793  // These values are stored in resources with names like:
1794  // KVDataAnalysisLauncher.[name].[repository].[dataset]...
1795  //
1796  // If no stored value is found, the defaultvalue is returned
1797 
1798  TString res, ful_res;
1799 
1800  BuildResourceName(name, res, ful_res);
1801 
1802  if (!ful_res.Length()) {
1803  return GUIenv->GetValue(res.Data(), defaultvalue);
1804  }
1805 
1806  return GUIenv->GetValue(ful_res.Data(), defaultvalue);
1807 }
1808 
1809 
1810 
1811 
1814 
1816 {
1817  // Get the system name for the batch name
1818 
1819  TString tmp = GetSystem();
1820  if (tmp == "All") return GetSystem();
1821  return GetDataAnalyser()->SystemBatchName();
1822 }
1823 
1824 
1825 
1826 
1853 
1854 void KVDataAnalysisLauncher::BuildResourceName(const TString& name, TString& cur_res, TString& saved_res)
1855 {
1856  // Build the full resource names for storing DataSet, Task, etc.
1857  //
1858  // We store the current state of the interface using the following resource names:
1859  //
1860  // "name" "cur_res"
1861  // Repository KVDataAnalysisLauncher.Repository
1862  // DataSet KVDataAnalysisLauncher.DataSet
1863  // Task KVDataAnalysisLauncher.Task
1864  // UserClass KVDataAnalysisLauncher.UserClass
1865  // UserClassOptions KVDataAnalysisLauncher.UserClassOptions
1866  // NbEventsToRead KVDataAnalysisLauncher.NbEventsToRead
1867  //
1868  // We also keep a "memory" of all selected configurations using the following
1869  // resource names:
1870  //
1871  // "name" "saved_res"
1872  // DataSet KVDataAnalysisLauncher.DataSet.[repository]
1873  // Task KVDataAnalysisLauncher.Task.[repository].[dataset]
1874  //
1875  // N.B. [task]: it is the NAME of the task which is used in the resource name.
1876  //
1877  // If name = "Repository", saved_res="" as we do not save it.
1878  // If the resource cannot be saved because one of the resources that is needed to form the
1879  // full resource name has not been set, saved_res="".
1880 
1881  //Resource name for current value
1882  cur_res = name;
1883  cur_res.Prepend("KVDataAnalysisLauncher.");
1884 
1885  //Build full name for save
1886  Int_t index = -1;
1887  saved_res = "";
1888  // look for resource name in list ResourceNames
1889  TObject* resource = 0;
1890  if ((resource = ResourceNames.FindObject(name))) {
1891  //get index in resource table
1892  index = ResourceNames.IndexOf(resource);
1893  }
1894 
1895  if (index == 0) { // resource name = "Repository"; nothing more to do
1896  return;
1897  }
1898 
1899  if (index == -1) index = NbResNames; // force loop to end of list
1900 
1901  // resource name is written in format KVDataAnalysisLauncher.[name].[repository]....
1902  // where the suffixed resource values are all those in the list before the named resource
1903  // i.e. for name = "Task" we write the resource KVDataAnalysisLauncher.Task.[repository].[dataset]
1904 
1905  saved_res = cur_res;
1906  TIter next_res(&ResourceNames);
1907  Int_t i = 0;
1908  Bool_t ok = kTRUE;
1909 
1910  while ((resource = next_res()) && (i++ < index)) {
1911 
1912  TString tmp(GetResource(resource->GetName()));
1913  TString res;
1914  if (tmp == "") {
1915  // one of required resources is not set - none of following resources will be set either
1916  // we cannot save this resource
1917  ok = kFALSE;
1918  break;
1919  }
1920  if (!strcmp(resource->GetName(), "Task") && current_dataset) {
1921  // translate title to name for task
1923  if (tsk) res.Form(".%s", tsk->GetName());
1924  }
1925  else {
1926  res = GetResource(resource->GetName()).Prepend(".");
1927  }
1928  saved_res += res;
1929  }
1930  if (name == "UserClassOptions") {
1931  if (GetResource("UserClass", "").Length())
1932  saved_res += GetResource("UserClass", "").Prepend(".");
1933  else ok = kFALSE;
1934  }
1935 
1936  if (!ok) saved_res = "";
1937 }
1938 
1939 
1940 
1941 
1949 
1951 {
1952  // Look at files in working directory & deduce list of user analysis classes.
1953  // We look for any file ending in '.h'. If we can find a corresponding '.cpp' or '.C' or '.cxx',
1954  // we consider that it is a user analysis class. This list is used to fill the "User Class"
1955  // drop-down list.
1956  // We add "[NEW]" at the end of the list: if selected, this will generate a new user analysis
1957  // class for the currently selected data & analysis task
1958 
1959  TSystemDirectory dir("LocDir", ".");
1960  unique_ptr<TList> lf(dir.GetListOfFiles());
1961  if (!lf.get()) return;
1962  UserClassNames->Clear();
1963  //loop over file names
1964  TIter next(lf.get());
1965  while (TObject* file = next()) {
1966 
1967  // fill list with all '.h' files
1968  TString tmp(file->GetName());
1969  if (tmp.EndsWith(".h")) {
1970  //strip '.h' from filename
1971  tmp.Remove(tmp.Index(".h"));
1972  UserClassNames->Add(new TNamed(tmp.Data(), tmp.Data()));
1973  }
1974 
1975  }
1976 
1977  // now check that implementation files exist for all '.h' we found
1978  TIter next_cl(UserClassNames);
1979  KVString imp, dec;
1980  while (TNamed* clh = (TNamed*)next_cl()) {
1981  if (!KVBase::FindClassSourceFiles(clh->GetName(), imp, dec)) clh->SetName("_INVALID_");
1982  }
1983  // remove all invalid class names
1984  while (TObject* obj = UserClassNames->FindObject("_INVALID_")) {
1985  UserClassNames->Remove(obj);
1986  delete obj;
1987  }
1988  // add [NEW] to list
1989  UserClassNames->Add(new TNamed("[NEW]", "[NEW]"));
1990 }
1991 
1992 
1993 
1994 
1997 
1999 {
2000  // Sets the list of all available user classes in the drop down list
2001 
2002 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
2004 #else
2006 #endif
2007  cbUserClass->Select(-1);
2008 
2009  Int_t nbcl = UserClassNames->GetEntries();
2010  Int_t i = 0;
2011  cbUserClass->AddEntry("", i++);
2012  while (i < nbcl + 1) {
2013  cbUserClass->AddEntry(UserClassNames->At(i - 1)->GetName(), i);
2014  i++;
2015  }
2016  cbUserClass->Layout();
2017 }
2018 
2019 
2020 
2021 
2025 
2027 {
2028  // Called when a user class is selected in the combo box.
2029  // Updates batch name if 'auto batch name' is selected.
2030 
2031  if (class_name == "[NEW]") {
2033  return;
2034  }
2035 
2036  // save resource
2037  SetResource("UserClassOptions", teUserOptions->GetText());
2038  SetResource("UserClass", class_name);
2039  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2040  SetResource("UserClassOptions", teUserOptions->GetText());
2041  if (strcmp("", class_name)) {
2044  }
2045  else btEditClass->SetEnabled(kFALSE);
2047 }
2048 
2049 
2050 
2057 
2059 {
2060  // called when user selects [NEW] in user class list
2061  // we generate a new analysis class for currently selected data & task
2062  // the source files are opened in the $EDITOR
2063  // the new class is selected for the analysis
2064 
2065  // Get name of new class
2066  TString classname;
2067  Bool_t ok;
2068  new KVInputDialog(this, "Enter name of new analysis class", &classname, &ok, "Enter name of new analysis class");
2069  // check new classname is not name of existing class
2070  KVString impfile, decfile;
2071  if (KVBase::FindClassSourceFiles(classname, impfile, decfile)) {
2072  ok = ok && WarningBox("Replacing existing class",
2073  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)",
2074  classname.Data(), decfile.Data(), impfile.Data()),
2075  kTRUE);
2076  }
2077  if (ok) {
2078  // user class generation depends on gDataSet being set
2079  gDataSet=current_dataset;
2080  current_dataset->MakeAnalysisClass(GetTask(), classname);
2082  }
2083  SetUserClassList();
2084  if (ok) {
2085  SetUserClass(classname);
2087  }
2088 }
2089 
2090 
2091 
2092 
2097 
2099 {
2100  // Sets selected user class in combo box according to e.g. a previously stored resource value.
2101  // We update the resource corresponding to the current state of the interface.
2102 
2103  // look for user class in list
2104  TGLBEntry* e = cbUserClass->FindEntry(class_name);
2105 
2106  if (e) {
2107  Int_t i = e->EntryId();
2108 #ifdef __WITHOUT_TGCOMBOBOX_SELECT_BOOL_T
2109  cbUserClass->Select(i);
2110 #else
2111  cbUserClass->Select(i, kFALSE);
2112 #endif
2113  // save current user class options
2114  // save current user class
2115  SetResource("UserClass", class_name);
2116  teUserOptions->SetText(GetSavedResource("UserClassOptions", ""));
2118  }
2119 
2120  else
2121  // unknown user class
2122  {
2123  cbUserClass->Select(-1);
2124  SetResource("UserClass", "");
2125 
2127  }
2129 }
2130 
2131 
2132 
2133 
2136 
2138 {
2139  // Returns currently selected user class name
2140 
2142  return e->GetText()->GetString();
2143  }
2144  else {
2145  return "";
2146  }
2147 }
2148 
2149 
2150 
2151 
2154 
2156 {
2157  // Remove all entries from user class combo box & disable text entry
2158 
2159 #ifdef __WITHOUT_TGCOMBOBOX_REMOVEALL
2161 #else
2163 #endif
2164  cbUserClass->Select(-1);
2167 }
2168 
2169 
2170 
2171 
2176 
2178 {
2179  // Reenable user class combo box & text entry,
2180  // fill list with all known user classes & select the one corresponding
2181  // to the current environment
2182 
2183 
2184  SetUserClassList();
2185  SetUserClass(GetSavedResource("UserClass", ""));
2188 }
2189 
2190 
2191 
2196 
2198 {
2199  // If environment variable $EDITOR is set, and if the currently selected
2200  // user class has available source files, we open them in the
2201  // user's favourite editor
2202 
2203  TString editor = gSystem->Getenv("EDITOR");
2204  if (editor == "") return;
2205  TString uclass = GetUserClass();
2206  if (uclass == "") return;
2207  KVString imp, dec;
2208  if (!KVBase::FindClassSourceFiles(uclass, imp, dec)) return;
2209  gSystem->Exec(Form("%s %s %s &", editor.Data(), imp.Data(), dec.Data()));
2210 }
2211 
2212 
2213 
2218 
2220 {
2221  // For analysis tasks which perform data conversions (raw -> recon, dst -> recon, ...)
2222  // clicking on this button will select all of the runs of the currently selected system(s)
2223  // which have not yet been converted.
2224 
2226  DeselectAll();
2227  if (stage_sel) {
2228  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2230  }
2231 }
2232 
2233 
2234 
2242 
2244 {
2245  // Called when 'Stage selection' button is pressed, for conversion jobs
2246  // which generate 'target' files from 'source' files.
2247  //
2248  // Open small GUI for user to choose:
2249  // - stage selection (i.e. select all 'source' files for which no 'target' file exists)
2250  // - date selection (i.e. select all 'source ' files for which 'target' file is outside given date range)
2251 
2252  if (fStageSelections.IsEmpty()) {
2253  fStageSelections.SetValue("Missing", true);
2254  fStageSelections.SetValue("Date", false);
2255  fStageSelections.SetValue(" - earliest", KVDatime().AsSQLString());
2256  fStageSelections.SetValue(" - latest", KVDatime().AsSQLString());
2257  }
2258  Bool_t cancel = false;
2259  auto param_gui = new KVNameValueListGUI(this, &fStageSelections, &cancel);
2260  param_gui->MutuallyExclusive({"Missing", "Date"});
2261  param_gui->EnableDependingOnBool(" - earliest", "Date");
2262  param_gui->EnableDependingOnBool(" - latest", "Date");
2263  param_gui->DisplayDialog();
2264  if (!cancel) {
2265  if (fStageSelections.GetBoolValue("Date")) {
2266  std::optional<KVDatime> Dmin, Dmax;
2267  if (!fStageSelections.GetTStringValue(" - earliest").IsWhitespace())
2268  Dmin = KVDatime(fStageSelections.GetTStringValue(" - earliest"), KVDatime::kSQL);
2269  if (!fStageSelections.GetTStringValue(" - latest").IsWhitespace())
2272  DeselectAll();
2273  if (stage_sel) {
2274  lvRuns->ActivateItemsWithColumnData("Run/Index", stage_sel);
2276  }
2277  }
2278  else if (fStageSelections.GetBoolValue("Missing")) {
2280  }
2281  }
2282 }
2283 
2284 
2285 
2288 
2290 {
2291  // Update available runs for current selected task (=datatype)
2292 
2294  // this will cause system list to be refilled in accordance with new available runfiles
2295  SetTask(GetTask());
2296 }
2297 
2298 
2299 
2300 
2305 
2307 {
2308  // Called when user presses "Runlist" button.
2309  // Open dialogue box in which a runlist can be entered.
2310  // The runs in the runlist will be selected.
2311 
2312  TString runs = listOfRuns.AsString();
2313  Bool_t ok = kFALSE;
2314  new KVInputDialog(this, "Enter list of runs", &runs, &ok);
2315  if (ok) {
2316  DeselectAll();
2317  SetRuns(runs.Data());
2318  }
2319 }
2320 
2321 
2322 
2323 
2328 
2330 {
2331  // Called when the selected runs in TGListView lvRuns change.
2332  // We update the run_index_list listOfRuns according to the current selection
2333  // we modify the limits of the 'runs per job' widget
2334 
2335  listOfRuns.Clear();
2336  auto novolist = lvRuns->GetSelectedObjects();
2337  if (novolist.GetEntries() > 0) {
2338  TIter nxt(&novolist);
2339  KVRunFile* s = 0;
2340  while ((s = (KVRunFile*)nxt())) listOfRuns.Add(s->GetRunIndex());
2341  }
2342 
2343  SetResource("RunsList", listOfRuns.AsString());
2344  if (listOfRuns.GetNValues())
2345  selectedRuns->SetText(Form("%d Selected Run%s : %s",
2347  listOfRuns.GetNValues() > 1 ? "s" : "",
2348  listOfRuns.AsString(MAX_LENGTH_SELECTED_RUNS).Data()));
2349  else
2350  selectedRuns->SetText(" ");
2352 }
2353 
2354 
2355 
2356 
2359 
2361 {
2362  // Empty displayed list of selected runs
2363  listOfRuns.Clear();
2364  SetResource("RunsList", "");
2365  selectedRuns->SetText(" ");
2367 }
2368 
2369 
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)
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)
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:1833
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:1237
KVDataAnalysisTask * GetAnalysisTask(Int_t) const
Definition: KVDataSet.cpp:591
KVList GetListOfAvailableRunFilesForSystem(const TString &datatype, KVDBSystem *systol)
Definition: KVDataSet.cpp:646
virtual Int_t GetNtasks() const
Definition: KVDataSet.cpp:576
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:1291
void cd() const
Definition: KVDataSet.cpp:785
void UpdateAvailableRuns(const KVString &type)
Definition: KVDataSet.cpp:1105
bool MakeAnalysisClass(const Char_t *task, const Char_t *classname)
Definition: KVDataSet.cpp:1971
ValType GetDataSetEnv(const Char_t *type, const ValType &defval={}) const
Definition: KVDataSet.h:269
KVUnownedList GetListOfAvailableSystems(const TString &datatype)
Definition: KVDataSet.cpp:606
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:918
Bool_t IsMinimal() const
Definition: KVExpDB.h:271
virtual KVSeqCollection * GetSystems() const
Definition: KVExpDB.h:168
Directory dialogue box for KVDataAnalysisLauncher.
void Init(const TString &fileList, const TString &title) override
init window
KVGDirectoryList(const TString &st, const TString &titre="File list", const TGWindow *p=0, const TGWindow *main=0, Bool_t ok=kTRUE)
Createur.
TString GetFileFromDialog(void) override
Gets the file name from a TGFileDialog.
Bool_t CanAdd(const TString &s) override
tells whether the file in ths string fn can be added to the list box
File dialogue box for KVDataAnalysisLauncher.
KVGFileList(const TString &st, const TString &titre="File list", const TGWindow *p=0, const TGWindow *main=0, Bool_t ok=kTRUE)
Createur.
TGTextEntry * teFileName
void RemoveFiles()
Remove all the selected files from the TGListBox.
TGTextButton * boutRem
~KVGFileList()
Destructeur.
virtual TString GetFileFromDialog()
Gets the file name from a TGFileDialog.
void Done()
build the file list string from the content of the TGListBox
virtual void Init(const TString &fileList, const TString &title)
Init window.
TGTextButton * boutAllRem
void RemoveAllFiles()
Remove all the files from the TGListBox.
TGTextButton * boutAdd
virtual Bool_t CanAdd(const TString &s)
tells whether the file in ths string fn can be added to the list box
TGListBox * lbFileList
General purpose dialog box asking for some input in the form of a string.
Definition: KVInputDialog.h:24
Enhanced version of ROOT TGListView widget.
Definition: KVListView.h:146
virtual void SelectAll()
Definition: KVListView.h:185
virtual void UnSelectAll()
Definition: KVListView.h:189
void ActivateItemsWithColumnData(const Char_t *colname, const KVNumberList &data, Bool_t activate=kTRUE)
Definition: KVListView.h:230
virtual void Display(const TCollection *l)
Definition: KVListView.h:173
KVUnownedList GetSelectedObjects() const
Definition: KVListView.h:252
TObject * GetLastSelectedObject() const
Definition: KVListView.h:238
void ActivateItemWithColumnData(const Char_t *colname, const Char_t *data, Bool_t activate=kTRUE)
Definition: KVListView.h:218
virtual void RemoveAll()
Definition: KVListView.h:193
GUI for setting KVNameValueList parameters.
void SetValue(const Char_t *name, value_type value)
void SetFromEnv(TEnv *tenv, const TString &prefix="")
Int_t GetNpar() const
return the number of stored parameters
Bool_t IsEmpty() const
Bool_t HasBoolParameter(const Char_t *name) const
Bool_t GetBoolValue(const Char_t *name) const
TString GetTStringValue(const Char_t *name) const
void WriteToEnv(TEnv *tenv, const TString &prefix="")
Description of an individual data file in an experimental dataset.
Definition: KVRunFile.h:19
TObject * FindObject(const char *name) const override
Int_t GetSize() const override
void Clear(Option_t *option="") override
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Definition: KVString.h:73
void Begin(TString delim) const
Definition: KVString.cpp:565
Bool_t End() const
Definition: KVString.cpp:634
KVString Next(Bool_t strip_whitespace=kFALSE) const
Definition: KVString.cpp:695
virtual void AddAll(const TCollection *col)
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
virtual Bool_t IsEmpty() const
virtual const char * GetValue(const char *name, const char *dflt) const
virtual void SetValue(const char *name, const char *value, EEnvLevel level=kEnvChange, const char *type=nullptr)
virtual void SaveLevel(EEnvLevel level)
static TClass * Class()
virtual void SetToolTipText(const char *text, Long_t delayms=400)
virtual void SetEnabled(Bool_t e=kTRUE)
void WaitFor(TGWindow *w)
void NeedRedraw(TGWindow *w, Bool_t force=kFALSE)
virtual Int_t GetSelected() const
void Layout() override
void RemoveAll() override
virtual TGLBEntry * GetSelectedEntry() const
virtual void Select(Int_t id, Bool_t emit=kTRUE)
virtual void SetEnabled(Bool_t on=kTRUE)
virtual TGLBEntry * FindEntry(const char *s) const
virtual void AddEntry(const char *s, Int_t id)
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
void MapSubwindows() override
void Layout() override
virtual void RemoveAll()
char * fFilename
const char ** fFileTypes
char * fIniDir
virtual void Resize(TGDimension size)
void MapRaised() override
void SetTextJustify(Int_t tmode)
void SetText(const char *newText)
virtual void RemoveEntry(Int_t id=-1)
virtual void AddEntry(const char *s, Int_t id)
void Layout() override
virtual TGLBEntry * GetEntry(Int_t id) const
virtual void GetSelectedEntries(TList *selected)
virtual void RemoveEntries(Int_t from_ID, Int_t to_ID)
virtual TGLBEntry * FindEntry(const char *s) const
virtual void CloseWindow()
virtual void SetIntNumber(Long_t val, Bool_t emit=kTRUE)
virtual Long_t GetIntNumber() const
virtual Double_t GetNumber() const
TGClient * fClient
virtual void SetText(const TString &new_label)
const char * GetText() const
void SetEnabled(Bool_t flag=kTRUE)
virtual void SetText(const char *text, Bool_t emit=kTRUE)
void Clear(Option_t *option="") override
TObject * FindObject(const char *name) const override
void Add(TObject *obj) override
TObject * Remove(const TObjLinkPtr_t &lnk)
TObject * At(Int_t idx) const override
const char * GetName() const override
const char * GetTitle() const override
static TClass * Class()
virtual const char * GetName() const
virtual void Warning(const char *method, const char *msgfmt,...) const
virtual void Info(const char *method, const char *msgfmt,...) const
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
virtual Int_t IndexOf(const TObject *obj) const
Ssiz_t Length() const
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
const char * Data() const
Bool_t IsNull() const
TString & Prepend(char c, Ssiz_t rep=1)
Bool_t IsWhitespace() const
void Form(const char *fmt,...)
TString & Remove(EStripType s, char c)
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual TList * GetListOfFiles() const
virtual void Unload(const char *module)
virtual const char * Getenv(const char *env)
virtual const char * GetIncludePath()
virtual Int_t Exec(const char *shellcmd)
virtual void SetIncludePath(const char *includePath)
virtual int GetPathInfo(const char *path, FileStat_t &buf)
virtual const char * HostName()
virtual char * ExpandPathName(const char *path)
virtual Bool_t ProcessEvents()
List of runfiles specified by run number and file index ,.
TString AsString(Int_t maxlen=0) const
Int_t GetNValues() const
void Add(const run_index_t &r)
long long Long64_t
void box(Int_t pat, Double_t x1, Double_t y1, Double_t x2, Double_t y2)
int main(int argc, char **argv)
const Int_t n
ClassImp(TPyArg)