4 #include "KVUnownedList.h"
5 #include "KVSimDirGUI.h"
6 #include "KVDataSetManager.h"
7 #include "KVBatchSystemManager.h"
9 #include "KVDBSystem.h"
11 #include "KVSimFile.h"
12 #include "KVFileDialog.h"
13 #include "KVInputDialog.h"
16 #include "TGButtonGroup.h"
19 #include <KVDataAnalyser.h>
20 #include <KVSimDirFilterAnalyser.h>
21 #include <KVSimReader.h>
25 #include "KVBatchSystemParametersGUI.h"
26 #include "KVDropDownDialog.h"
39 TString ds_table_name = Form(
"Table_%d", ds_table_number);
56 fConfigDB.add_table(DStable);
58 fConfigDB[
"Datasets"][
"Table"] = ds_table_name;
59 fConfigDB.update(
"Datasets",
"Table", Form(
"Name=\"%s\"", sd->GetName()));
69 fConfigDB.prepare_data_insertion(ds_table_name);
75 dstable[
"Id"].set_null();
76 dstable[
"FileName"] = sf->GetName();
77 dstable[
"TreeInfo"] = sf->GetTitle();
78 dstable[
"Filtered"] = 0;
79 dstable[
"Events"] = (Int_t)sf->
GetEvents();
82 fConfigDB.insert_data_row();
89 dstable[
"Id"].set_null();
90 dstable[
"FileName"] = sf->GetName();
91 dstable[
"TreeInfo"] = sf->GetTitle();
92 dstable[
"Filtered"] = 1;
93 dstable[
"Events"] = (Int_t)sf->
GetEvents();
98 dstable[
"Run"] = sf->
GetRun();
104 fConfigDB.insert_data_row();
107 fConfigDB.end_data_insertion();
118 : fGuirc(
".kvsimdirguirc")
120 , fConfigDB(gSystem->ExpandPathName(
"$(HOME)/.kvsimdirguidb"))
131 gSystem->SetBuildDir(gSystem->TempDirectory());
133 MainFrame =
new TGMainFrame(gClient->GetRoot(), 10, 10, kMainFrame | kVerticalFrame);
135 MainFrame->SetWindowName(
"KaliVedaSim GUI");
136 MainFrame->Connect(
"CloseWindow()",
"KVSimDirGUI",
this,
"Exit()");
138 TGHorizontalFrame* hftop =
new TGHorizontalFrame(
MainFrame, 10, 10, kHorizontalFrame);
140 TGCompositeFrame* vf =
new TGVerticalFrame(hftop, 200, 500, kVerticalFrame);
142 TGCompositeFrame* hf =
new TGHorizontalFrame(vf, 10, 10, kHorizontalFrame);
143 BaddDir =
new TGPictureButton(hf, gClient->GetPicture(
"package_add.xpm"));
144 hf->AddFrame(
BaddDir,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 3, 2, 2, 2));
146 BaddDir->SetToolTipText(
"Add dataset");
147 BaddDir->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"AddSimDir()");
148 BimpSim =
new TGPictureButton(hf, gClient->GetPicture(
"bld_text.xpm"));
149 hf->AddFrame(
BimpSim,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
151 BimpSim->SetToolTipText(
"Import simulation");
152 BimpSim->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"ImportSimulation()");
153 BremDir =
new TGPictureButton(hf, gClient->GetPicture(
"package_delete.xpm"));
154 hf->AddFrame(
BremDir,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
156 BremDir->SetToolTipText(
"Remove dataset");
157 BremDir->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"RemSimDir()");
158 BrefreshDir =
new TGPictureButton(hf, gClient->GetPicture(
"refresh2.xpm"));
159 hf->AddFrame(
BrefreshDir,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
162 BrefreshDir->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"RefreshSimDir()");
167 vf->AddFrame(hf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 2, 2, 2, 2));
176 popen = gClient->GetPicture(
"package_add.xpm");
177 pclose = gClient->GetPicture(
"package_add.xpm");
182 fDirListTree->Connect(
"Clicked(TGListTreeItem*,Int_t)",
"KVSimDirGUI",
this,
"SelectSimDir(TGListTreeItem*,Int_t)");
185 vf->AddFrame(
fDirListCanvas,
new TGLayoutHints(kLHintsTop | kLHintsExpandY, 5, 2, 2, 10));
187 hftop->AddFrame(vf,
new TGLayoutHints(kLHintsExpandY | kLHintsTop, 2, 2, 2, 2));
190 vf =
new TGVerticalFrame(hftop, 600, 500, kVerticalFrame);
191 TGGroupFrame* group =
new TGGroupFrame(vf,
"Simulations");
199 group->AddFrame(
fLVsimData,
new TGLayoutHints(kLHintsTop | kLHintsExpandX | kLHintsExpandY, 5, 5, 10, 10));
200 vf->AddFrame(group,
new TGLayoutHints(kLHintsTop | kLHintsExpandX | kLHintsExpandY, 2, 2, 2, 2));
201 group =
new TGGroupFrame(vf,
"Filtered Simulations");
214 group->AddFrame(
fLVfiltData,
new TGLayoutHints(kLHintsTop | kLHintsExpandX | kLHintsExpandY, 5, 5, 10, 10));
215 vf->AddFrame(group,
new TGLayoutHints(kLHintsTop | kLHintsExpandX | kLHintsExpandY, 2, 2, 2, 2));
217 hftop->AddFrame(vf,
new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 10, 10, 10, 10));
218 MainFrame->AddFrame(hftop,
new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 1, 1, 1, 1));
223 fAnalTab->ChangeOptions(kVerticalFrame);
224 vf =
new TGVerticalFrame(
fAnalTab, 600, 200, kVerticalFrame);
225 hf =
new TGHorizontalFrame(vf, 10, 10, kHorizontalFrame);
226 TGLabel* lab =
new TGLabel(hf,
"Analysis class : ");
227 hf->AddFrame(lab,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 2, 2, 2, 2));
231 TGPictureButton* change_class =
new TGPictureButton(hf, gClient->GetPicture(
"bld_open.png"));
233 change_class->SetToolTipText(
"Change class");
234 change_class->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"SelectAnalysisClass()");
235 hf->AddFrame(change_class,
new TGLayoutHints(kLHintsCenterY | kLHintsRight, 2, 2, 2, 2));
236 vf->AddFrame(hf,
new TGLayoutHints(kLHintsTop | kLHintsExpandY, 2, 2, 2, 2));
237 hf =
new TGHorizontalFrame(vf, 10, 10, kHorizontalFrame);
239 TGTextButton* new_anal_class =
new TGTextButton(hf,
"New simulated analysis class");
240 new_anal_class->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"NewSimulatedAnalysisClass()");
241 hf->AddFrame(new_anal_class,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 2, 10));
242 TGTextButton* new_filt_class =
new TGTextButton(hf,
"New filtered analysis class");
243 new_filt_class->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"NewFilteredAnalysisClass()");
244 hf->AddFrame(new_filt_class,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY));
246 vf->AddFrame(hf,
new TGLayoutHints(kLHintsTop | kLHintsExpandY, 2, 2, 2, 2));
250 fAnalTab->AddFrame(vf,
new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 2, 2, 2, 2));
254 fFiltTab->ChangeOptions(kVerticalFrame);
255 vf =
new TGHorizontalFrame(
fFiltTab, 600, 200, kHorizontalFrame);
259 hf =
new TGGroupFrame(vf,
"Experimental conditions", kVerticalFrame);
264 TGCompositeFrame* tmpf =
new TGHorizontalFrame(hf, 600, 200, kHorizontalFrame);
266 if (!gDataSetManager) {
271 Int_t ndatasets = gDataSetManager->
GetNtotal();
273 for (
int i = 1; i <= ndatasets; i++) {
280 tmpf->AddFrame(
fCBdataset,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
281 fCBdataset->Connect(
"Selected(const char*)",
"KVSimDirGUI",
this,
"SelectDataSet(const char*)");
283 auto text_label =
new TGLabel(tmpf,
"[determines detection setup i.e. detector array geometry]");
284 tmpf->AddFrame(text_label,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 10, 2, 2, 2));
286 hf->AddFrame(tmpf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 0, 0, 0, 0));
288 tmpf =
new TGHorizontalFrame(hf, 600, 200, kHorizontalFrame);
290 fCBsystem->AddEntry(
"Choose system...", 0);
294 tmpf->AddFrame(
fCBsystem,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
295 fCBsystem->Connect(
"Selected(const char*)",
"KVSimDirGUI",
this,
"SelectSystem(const char*)");
297 text_label =
new TGLabel(tmpf,
"[system + run number determine...");
298 tmpf->AddFrame(text_label,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 10, 2, 2, 2));
300 hf->AddFrame(tmpf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 0, 0, 0, 0));
302 tmpf =
new TGHorizontalFrame(hf, 600, 200, kHorizontalFrame);
303 fCBrun =
new TGComboBox(tmpf);
304 fCBrun->AddEntry(
"Choose run...", 0);
307 fCBrun->Select(0, kFALSE);
308 tmpf->AddFrame(
fCBrun,
new TGLayoutHints(kLHintsLeft | kLHintsTop, 2, 2, 2, 2));
309 fCBrun->Connect(
"Selected(const char*)",
"KVSimDirGUI",
this,
"SelectRun(const char*)");
311 text_label =
new TGLabel(tmpf,
"...run-specific parameters (which id, calibs are set/working, gas pressures, ...)]");
312 tmpf->AddFrame(text_label,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 10, 2, 2, 2));
314 hf->AddFrame(tmpf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 0, 0, 0, 0));
316 tmpf =
new TGHorizontalFrame(hf, 600, 200, kHorizontalFrame);
325 fTESystem =
new TGTextEntry(tmpf,
new TGTextBuffer(400));
327 fTESystem->SetToolTipText(
"[Projectile_Symbol]+[Target_Symbol]@[Incident_Energy]MeV/A (ex: 129Xe+119Sn@50.0MeV/A)");
328 tmpf->AddFrame(
fTESystem,
new TGLayoutHints(kLHintsCenterY | kLHintsLeft, 10, 2, 2, 2));
329 fTESystem->Connect(
"TextChanged(const char*)",
"KVSimDirGUI",
this,
"UpdateSystemText(const char*)");
331 hf->AddFrame(tmpf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 0, 0, 0, 0));
333 vf->AddFrame(hf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 2, 2, 10, 2));
336 hf =
new TGHorizontalFrame(vf, 10, 10, kHorizontalFrame);
338 TGButtonGroup* bgroup =
new TGButtonGroup(hf,
"Filter type");
340 TGRadioButton* radiob =
new TGRadioButton(bgroup,
"Geometric");
341 radiob->SetToolTipText(
"Use geometrical filter: no thresholds; only deadzones");
342 radiob =
new TGRadioButton(bgroup,
"Geometry+Thresholds");
343 radiob->SetToolTipText(
"Use geometry + theoretical thresholds for detection/identification, nominal performances of all detectors/identifications");
345 radiob =
new TGRadioButton(bgroup,
"Full");
346 radiob->SetToolTipText(
"As Geo+Thresh, but detectors/identifications/calibrations which work depend on the run number (as for experiment)");
347 radiob->SetState(kButtonDown);
348 bgroup->Connect(
"Clicked(Int_t)",
"KVSimDirGUI",
this,
"FilterType(Int_t)");
351 hf->AddFrame(bgroup,
new TGLayoutHints(kLHintsTop | kLHintsLeft | kLHintsExpandY, 2, 2, 2, 2));
353 TGVerticalFrame* vf1 =
new TGVerticalFrame(hf, 30, 30);
354 bgroup =
new TGButtonGroup(vf1,
"Options");
356 phi_rotation_check->Connect(
"Toggled(Bool_t)",
"KVSimDirGUI",
this,
"SetRandomPhi(Bool_t)");
357 phi_rotation_check->SetToolTipText(
"Random rotation around beam axis before detection");
361 gemini_decay =
new TGCheckButton(bgroup,
"Gemini++ decay");
362 gemini_decay->Connect(
"Toggled(Bool_t)",
"KVSimDirGUI",
this,
"SetGeminiDecay(Bool_t)");
363 gemini_decay->SetToolTipText(
"Use Gemini++ to calculate statistical decay before detection");
366 TGHorizontalFrame* hhf =
new TGHorizontalFrame(vf1, 20);
367 TGLabel* gemini_label =
new TGLabel(hhf,
"Decays/evt.:");
368 hhf->AddFrame(gemini_label,
new TGLayoutHints(kLHintsLeft | kLHintsCenterY, 5, 2, 2, 2));
369 gemini_decays =
new TGNumberEntry(hhf, 1, 5, 0, TGNumberFormat::kNESInteger, TGNumberFormat::kNEAPositive, TGNumberFormat::kNELLimitMin, 1);
370 gemini_decays->GetNumberEntry()->SetToolTipText(
"Number of times to decay each event with Gemini++");
371 hhf->AddFrame(
gemini_decays,
new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 10, 2, 2, 2));
374 TGHorizontalFrame* hhhf =
new TGHorizontalFrame(vf1, 20);
376 gemini_add_rot_energy->Connect(
"Toggled(Bool_t)",
"KVSimDirGUI",
this,
"SetGeminiDecayAddRotEnergy(Bool_t)");
377 gemini_add_rot_energy->SetToolTipText(
"Add the rotational energy to the excitation energy for each nucleus");
379 hhhf->AddFrame(
gemini_add_rot_energy,
new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 6, 2, 2, 3));
386 vf1->AddFrame(bgroup,
new TGLayoutHints(kLHintsTop, 1, 1, 1, 5));
388 vf1->AddFrame(hhf,
new TGLayoutHints(kLHintsBottom, 2, 2, 2, 2));
389 vf1->AddFrame(hhhf,
new TGLayoutHints(kLHintsBottom, 3, 3, 2, 4));
391 hf->AddFrame(vf1,
new TGLayoutHints(kLHintsLeft, 2, 2, 2, 2));
393 bgroup =
new TGButtonGroup(hf,
"Kinematics");
394 radiob =
new TGRadioButton(bgroup,
"CM");
395 radiob->SetToolTipText(
"Simulation in CM frame: will be transformed to lab frame for detection");
396 radiob->SetState(kButtonDown);
397 radiob =
new TGRadioButton(bgroup,
"Lab");
398 radiob->SetToolTipText(
"Simulation in lab frame: no kinematical transformation");
399 radiob =
new TGRadioButton(bgroup,
"Projectile");
400 radiob->SetToolTipText(
"Simulation in projectile frame: will be transformed to lab frame for detection");
401 bgroup->Connect(
"Clicked(Int_t)",
"KVSimDirGUI",
this,
"Kinematics(Int_t)");
403 hf->AddFrame(bgroup,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 20, 2, 2, 2));
417 vf->AddFrame(hf,
new TGLayoutHints(kLHintsTop | kLHintsLeft, 2, 2, 10, 2));
433 fFiltTab->AddFrame(vf,
new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 2, 2, 2, 2));
443 vf =
new TGVerticalFrame(
MainFrame, 600, 200, kVerticalFrame);
444 hf =
new TGHorizontalFrame(vf, 600, 200, kHorizontalFrame);
446 lab =
new TGLabel(hf,
"Events : ");
447 hf->AddFrame(lab,
new TGLayoutHints(kLHintsCenterY | kLHintsLeft, 2, 2, 2, 2));
449 hf->AddFrame(
fCBAllEvents,
new TGLayoutHints(kLHintsCenterY | kLHintsLeft, 2, 2, 2, 2));
450 fNENumberEvents =
new TGNumberEntry(hf, 1, 10, 0, TGNumberFormat::kNESInteger, TGNumberFormat::kNEAPositive, TGNumberFormat::kNELLimitMin, 1);
451 hf->AddFrame(
fNENumberEvents,
new TGLayoutHints(kLHintsCenterY | kLHintsLeft, 2, 2, 2, 2));
452 fCBAllEvents->Connect(
"Toggled(Bool_t)",
"KVSimDirGUI",
this,
"EnableEventNumberEntry(Bool_t)");
456 proof_analysis =
new TGPictureButton(hf, gClient->GetPicture(
"proof_base.xpm"));
457 proof_analysis->Connect(
"Pressed()",
"KVSimDirGUI",
this,
"EnableProof()");
458 proof_analysis->Connect(
"Released()",
"KVSimDirGUI",
this,
"DisableProof()");
465 TGPictureButton* launch_analysis =
new TGPictureButton(hf, gClient->GetPicture(
"query_submit.xpm"));
466 launch_analysis->Connect(
"Clicked()",
"KVSimDirGUI",
this,
"Run()");
467 launch_analysis->SetToolTipText(
"Run analysis/filter");
468 launch_analysis->Resize(40, 40);
470 hf->AddFrame(launch_analysis,
new TGLayoutHints(kLHintsCenterY | kLHintsRight, 5, 2, 2, 2));
471 hf->AddFrame(
proof_analysis,
new TGLayoutHints(kLHintsCenterY | kLHintsRight, 5, 2, 2, 2));
473 vf->AddFrame(hf,
new TGLayoutHints(kLHintsExpandX | kLHintsTop, 0, 0, 0, 0));
474 MainFrame->AddFrame(vf,
new TGLayoutHints(kLHintsExpandX | kLHintsTop, 10, 10, 15, 10));
487 bool sqlite_conversion =
false;
489 sqlite_conversion =
true;
497 if (!sqlite_conversion) {
508 if (sqlite_conversion) {
516 while (!simdirs.
End()) {
518 KVString simdirectory =
fGuirc.GetValue(Form(
"%s.Directory", simdir.Data()),
"");
521 if (sqlite_conversion) {
523 fConfigDB[
"Datasets"][
"Directory"] = simdirectory;
531 if (sqlite_conversion) {
612 while ((o = next())) {
613 TGListTreeItem* item0 =
fDirListTree->AddItem(NULL, o->GetName());
641 static TString dir(
".");
643 fi.fIniDir = StrDup(dir);
649 quest.Form(
"Enter name for dataset %s", fi.fIniDir);
651 simdirname.ReplaceAll(
" ",
"_");
660 TString simdirs =
fGuirc.GetValue(
"SimDirs",
"");
661 if (simdirs !=
"") simdirs +=
" ";
662 simdirs += simdirname;
663 fGuirc.SetValue(
"SimDirs", simdirs);
665 fGuirc.SaveLevel(kEnvUser);
668 int ds_table_num = 0;
673 "Table_%d", &ds_table_num);
678 fConfigDB[
"Datasets"][
"Name"] = simdirname;
702 TString ds_table_name;
722 TString ds_table_name;
733 TString simdirs =
"";
736 while ((togo = (
KVSimDir*)next())) {
737 if (simdirs !=
"") simdirs +=
" ";
738 simdirs += togo->GetName();
741 fGuirc.SetValue(
"SimDirs", simdirs);
742 fGuirc.SaveLevel(kEnvUser);
772 static TString dir(
".");
773 const char* filetypes[] = {
774 "Class header files",
"*.h",
778 fi.fIniDir = StrDup(dir);
779 fi.fFileTypes = filetypes;
784 if (idot < 0)
return;
789 cout <<
"Found class header " << gSystem->BaseName(
fAnalClassHeader) <<
" and implementation "
818 if (ds->
GetDataSetEnv(
"KVMultiDetArray.ROOTGeometry", kTRUE)) {
827 fCBsystem->AddEntry(
"Choose system...", 0);
833 fCBsystem->AddEntry(sys->GetName(), i++);
839 fCBrun->AddEntry(
"Choose run...", 0);
841 fCBrun->Select(0, kFALSE);
860 fCBrun->AddEntry(
"Choose run...", 0);
861 while ((dbr = (
KVDBRun*)next())) {
865 fCBrun->Select(0, kFALSE);
888 fRun.Remove(TString::kBoth,
' ');
904 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::Run",
"First choose the dataset which describes the geometry!", kMBIconExclamation);
931 TList* runs_to_analyse(
nullptr);
932 TList* aux_runs_to_analyse(
nullptr);
933 TString analysis_task;
934 if (type ==
"tree") {
935 if (!selected_sim_runs->GetEntries() && !selected_filt_runs->GetEntries()) {
936 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::RunAnalysis",
"Choose one or more simulated or filtered data files!", kMBIconExclamation);
944 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::RunAnalysis",
"Choose a valid analysis class!", kMBIconExclamation);
947 if (selected_sim_runs->GetEntries()) {
948 if (selected_filt_runs->GetEntries()) {
951 runs_to_analyse = selected_filt_runs.get();
952 analysis_task =
"analysis filtered";
953 aux_runs_to_analyse = selected_sim_runs.get();
956 runs_to_analyse = selected_sim_runs.get();
957 analysis_task =
"analysis simulated";
961 runs_to_analyse = selected_filt_runs.get();
962 analysis_task =
"analysis filtered";
967 if (selected_filt_runs->GetEntries()) {
968 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::RunFilter",
"Only simulated events can be filtered!", kMBIconExclamation);
971 if (!selected_sim_runs->GetEntries()) {
972 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::RunFilter",
"Choose a simulated data file to filter!", kMBIconExclamation);
975 runs_to_analyse = selected_sim_runs.get();
976 analysis_task =
"filter simulated";
982 if (aux_runs_to_analyse) gDataAnalyser->
SetAuxFileList(aux_runs_to_analyse);
986 new TGMsgBox(gClient->GetRoot(),
MainFrame,
"KVSimDirGUI::RunAnalysis",
"Compilation failed. Correct mistakes and try again!", kMBIconExclamation);
997 if (type ==
"filter") {
1004 if (cd.IsZombie()) {
1005 Error(
"SetFilterOptions",
"Please check the format of the ad hoc system name you gave");
1006 WarningBox(
"Bad System",
"Please check the format of the ad hoc system name you gave", kFALSE);
1020 Bool_t cancel_batch_job = kFALSE;
1022 gBatchSystem->
Clear();
1026 if (!cancel_batch_job) {
1035 selected_filt_runs.reset(
nullptr);
1036 selected_sim_runs.reset(
nullptr);
1048 else geometry =
"KV";
1052 else kinema =
"lab";
1059 filter =
"GeoThresh";
1066 options = Form(
"Dataset=%s,",
fDataset.Data());
1067 if (
fSystem !=
"") options += Form(
"System=%s,",
fSystem.Data());
1068 else if (kinema !=
"lab") {
1070 new TGMsgBox(gClient->GetRoot(),
MainFrame,
1071 "KVSimDirGUI::SetFilterOptions",
1072 Form(
"Cannot transform kinematics from %s to lab without a defined reaction (system)!", kinema.Data()),
1073 kMBIconExclamation);
1077 options += Form(
"Geometry=%s,", geometry.Data());
1078 options += Form(
"Filter=%s,", filter.Data());
1079 options += Form(
"Kinematics=%s", kinema.Data());
1082 r.Form(
",Run=%s",
fRun.Data());
1087 new TGMsgBox(gClient->GetRoot(),
MainFrame,
1088 "KVSimDirGUI::SetFilterOptions",
1089 Form(
"To use 'FULL' (run-dependent) filter requires either a run number or a system from the dataset!"),
1090 kMBIconExclamation);
1096 options +=
",Gemini=yes";
1097 options += Form(
",GemDecayPerEvent=%d", (Int_t)
gemini_decays->GetNumber());
1104 std::cout << options << std::endl;
1116 const char* filetypes[] = {
1122 fi.fFileTypes = filetypes;
1123 fi.SetMultipleSelection(
true);
1127 bool one_file = (!fi.fMultipleSelection && fi.fFilename);
1128 bool many_files = (fi.fMultipleSelection && fi.fFileNamesList);
1129 if (one_file || many_files) {
1134 while (!plugins.
End()) {
1137 if (choices.Length()) choices +=
" ";
1149 SR->ConvertAndSaveEventsInFile(fi.fFilename);
1152 if (fi.fFileNamesList->GetEntries() == 1) {
1155 SR->ConvertAndSaveEventsInFile(fi.fFileNamesList->First()->GetName());
1158 TIter it(fi.fFileNamesList);
1161 while ((o = it())) {
1163 SR->SetMultiFiles();
1164 SR->SetFileIndex(i++);
1166 SR->ConvertAndSaveEventsInFile(o->GetName());
1174 else if (fi.fMultipleSelection && fi.fFileNamesList) {
1175 fi.fFileNamesList->ls();
1189 new KVInputDialog(
MainFrame,
"Enter name of new analysis class", &classname, &ok,
"Enter name of new analysis class");
1193 ok = ok &&
WarningBox(
"Replacing existing class",
1194 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)",
1195 classname.Data(), decfile.Data(), impfile.Data()),
1213 new KVInputDialog(
MainFrame,
"Enter name of new analysis class", &classname, &ok,
"Enter name of new analysis class");
1217 ok = ok &&
WarningBox(
"Replacing existing class",
1218 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)",
1219 classname.Data(), decfile.Data(), impfile.Data()),
1242 Bool_t reply = kTRUE;
1244 new TGMsgBox(gClient->GetRoot(),
MainFrame, title, msg, kMBIconExclamation);
1247 new TGMsgBox(gClient->GetRoot(),
MainFrame, title, msg, kMBIconExclamation, kMBYes | kMBNo, &ret_code);
1248 reply = (ret_code & kMBYes);
1267 fConfigDB[
"Datasets"][
"Directory"].get_data<TString>()));
1269 fConfigDB[
"Datasets"][
"Table"].get_data<TString>());
1271 for (
int i = 0; i < tables.
GetNpar(); ++i) {
1276 if (dstable[
"Filtered"].get_data<int>()) {
1280 dstable[
"FileName"].get_data<TString>(), dstable[
"TreeInfo"].get_data<TString>(),
1281 dstable[
"Events"].get_data<int>(), dstable[
"TreeName"].get_data<TString>(),
1282 dstable[
"BranchName"].get_data<TString>(), dstable[
"DataSet"].get_data<TString>(),
1283 dstable[
"System"].get_data<TString>(), dstable[
"Run"].get_data<int>(),
1284 dstable[
"GeoType"].get_data<TString>(), dstable[
"OrigFile"].get_data<TString>(),
1285 dstable[
"FiltType"].get_data<TString>()
1287 f->
SetGemini(dstable[
"Gemini"].get_data<bool>());
1295 dstable[
"FileName"].get_data<TString>(), dstable[
"TreeInfo"].get_data<TString>(),
1296 dstable[
"Events"].get_data<int>(), dstable[
"TreeName"].get_data<TString>(),
1297 dstable[
"BranchName"].get_data<TString>());
Relativistic binary kinematics calculator.
void Print(Option_t *opt="") const
void CalculateKinematics()
Base class for KaliVeda framework.
static Bool_t FindClassSourceFiles(const Char_t *class_name, KVString &imp_file, KVString &dec_file, const Char_t *dir_name=".")
static const Char_t * GetListOfPlugins(const Char_t *base)
static const Char_t * GetPluginURI(const Char_t *base, const Char_t *plugin)
virtual void Copy(TObject &) const
Make a copy of this object.
Handles list of all available batch systems for processing non-interactive data analysis tasks.
KVBatchSystem * GetDefaultBatchSystem() const
Utility GUI used for setting batch system parameters.
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 &)
virtual void Clear(Option_t *opt="")
virtual Int_t GetNumber() const
Description of an experimental run in database ,,.
Database class used to store information on different colliding systems studied during an experiment....
KVUnownedList * GetRuns() const
Returns a sorted list of all the runs associated with this system.
virtual void Run()
Check all task variables, then run analyser.
virtual void SetAuxFileList(TList *)
void SetBatchSystem(KVBatchSystem *bs)
void SetUserClassOptions(const Char_t *o="")
void SetUserClass(const Char_t *kvs, Bool_t check=kTRUE)
void SetAnalysisTask(KVDataAnalysisTask *at)
virtual void SetFileList(TList *)
static KVDataAnalyser * GetAnalyser(const Char_t *plugin)
Bool_t IsUserClassValid() const
void SetNbEventToRead(Long64_t nb=0)
Define and manage data analysis tasks.
virtual Bool_t WithUserClass() const
virtual const Char_t * GetDataAnalyser() const
virtual const Char_t * GetUserBaseClass() const
Manage all datasets contained in a given data repository.
virtual Bool_t Init(KVDataRepository *=0)
virtual Int_t GetNtotal() const
KVDataAnalysisTask * GetAnalysisTaskAny(const Char_t *keywords) const
KVDataSet * GetDataSet(Int_t) const
Return pointer to DataSet using index in list of all datasets, index>=0.
Manage an experimental dataset corresponding to a given experiment or campaign.
const Char_t * GetDataSetEnv(const Char_t *type, const Char_t *defval="") const
Ask user to choose between several options in a drop-down list.
virtual KVDBSystem * GetSystem(const Char_t *system) const
virtual KVSeqCollection * GetSystems() const
Modified version of TGFileDialog file selection dialog.
Enhanced version of ROOT TGListView widget.
virtual void ActivateSortButtons()
virtual void SetDataColumns(Int_t ncolumns)
virtual void Display(const TCollection *l)
TList * GetSelectedObjects() const
void AllowContextMenu(Bool_t on=kTRUE)
virtual void SetDataColumn(Int_t index, const Char_t *name, const Char_t *method="", Int_t mode=kTextCenterX)
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
KVNamedParameter * GetParameter(Int_t idx) const
return the parameter object with index idx
void SetValue(const Char_t *name, value_type value)
Int_t GetNpar() const
return the number of stored parameters
value_type GetValue(const Char_t *name) const
const Char_t * GetString() const
int get_number_of_tables() const
int count(const TString &table, const TString &column="*", const TString &selection="", bool distinct=false) const
void delete_data(const TString &table, const TString &selection="")
void end_data_insertion()
bool select_data(const TString &tables, const TString &columns="*", const TString &selection="", bool distinct=false, const TString &anything_else="") const
KVNameValueList get_name_value_list(const TString &table, const TString &name_column, const TString &value_column, const TString &selection="", const TString &anything_else="")
bool get_next_result() const
void add_table(const table &)
bool prepare_data_insertion(const TString &)
void clear_table(const TString &name)
Delete all data from table.
const column & add_primary_key(const TString &name)
column & add_column(const KVSQLite::column &c)
KaliVeda extensions to ROOT collection classes.
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from list.
virtual TObject * FindObject(const char *name) const
Class piloting analyses of simulated data.
void SetDataSetForFilter(const TString &f)
void SetSystemForFilter(const TString &f)
static void Make(const Char_t *kvsname="MySimulatedAnalysis")
Generate a new simulated analysis selector class.
static void Make(const Char_t *kvsname="MyFilteredAnalysis")
Generate a new filtered analysis selector class.
GUI for analysing and filtering simulated data.
TGPictureButton * BremDir
void SelectDataSet(const char *)
void ReconstructSimDirsFromDB()
Rebuild all KVSimDir/KVSimFile objects from information in sqlite DB.
void NewFilteredAnalysisClass()
Get name of new class.
TGCheckButton * gemini_add_rot_energy
TGCompositeFrame * fAnalTab
analysis tab
KVSQLite::database fConfigDB
void SelectAnalysisClass()
TGCompositeFrame * fFiltTab
filter tab
void UpdateSystemText(const char *)
called every time the text changes
TGCheckButton * fCBAllEvents
virtual ~KVSimDirGUI()
Destructor.
TGCheckButton * custom_kinematics_check
void NewSimulatedAnalysisClass()
Get name of new class.
TGCheckButton * gemini_decay
TGViewPort * fDirListViewPort
TGNumberEntry * fNENumberEvents
void SelectSystem(const char *)
KVSimDir * fSelectedSimDir
void Copy(TObject &) const
KVString fReactionKinematics
TGListTree * fDirListTree
TGCanvas * fDirListCanvas
const TGPicture * pclose
used for list tree items
const TGPicture * popen
used for list tree items
KVString fAnalClassHeader
void Run()
void ChangeOutputDirectory();
void FillDataSetTableWithInfos(TString ds_table_name, KVSimDir *sd)
TGPictureButton * proof_analysis
TGTextEntry* fTEOutputDir;.
TGNumberEntry * gemini_decays
TGCheckButton * phi_rotation_check
void EnableEventNumberEntry(Bool_t)
void RunAnalysis(const TString &type)
Bool_t WarningBox(const char *title, const char *msg, Bool_t confirm)
TGPictureButton * BaddDir
Bool_t fWithPROOF
=kTRUE when running with PROOF-lite
Bool_t fCancelJob
if job parameters are not valid
TGPictureButton * BimpSim
TGPictureButton * BrefreshDir
TGTextEntry * fTEAnalysisClassFileName
void SelectSimDir(TGListTreeItem *, Int_t)
TString AddTableForDataSet(KVSimDir *sd, int ds_table_number)
Add a new dataset table for the given KVSimDir object.
void ImportSimulation()
Import simulation data from currently selected directory.
void SelectRun(const char *)
Handle directory containing simulated and/or filtered simulated data ,.
virtual const KVList * GetFiltDataList() const
void AddSimData(KVSimFile *)
virtual void AnalyseDirectory()
virtual const KVList * GetSimDataList() const
void AddFiltData(KVSimFile *)
virtual const Char_t * GetDirectory() const
Handle file containing simulated and/or filtered simulated data ,.
const Char_t * GetSystem() const
const Char_t * GetBranchName() const
const Char_t * GetOriginalFile() const
const Char_t * GetFilterType() const
const Char_t * GetGeometry() const
void SetGemini(Bool_t yes=kTRUE)
const Char_t * GetDataSet() const
Long64_t GetEvents() const
void SetGemDecayPerEvent(Int_t n)
const Char_t * GetTreeName() const
Int_t GetGemDecayPerEvent() const
static KVSimReader * MakeSimReader(const char *model_uri)
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const