16MpdMCTracksEditor::MpdMCTracksEditor(
const TGWindow * p, Int_t width, Int_t height,
17 UInt_t options, Pixel_t back)
18 : TGedFrame(p, width, height, options | kVerticalFrame, back),
23 MakeTitle(
"MpdEventManager Editor");
25 TGVerticalFrame* fInfoFrame = CreateEditorTabSubFrame(
"Info");
26 TGCompositeFrame* title1 =
new TGCompositeFrame(fInfoFrame, 180, 10,
31 TString Infile=
"Input File : ";
32 TFile* file = FairRootManager::Instance()->GetInChain()->GetFile();
33 Infile += file->GetName();
34 TGLabel* TFName =
new TGLabel(title1, Infile.Data());
35 title1->AddFrame(TFName);
37 UInt_t RunId = FairRunAna::Instance()->getRunId();
38 TString
run =
"Run Id : ";
40 TGLabel* TRunId =
new TGLabel(title1,
run.Data());
41 title1->AddFrame(TRunId);
43 fInfoFrame->AddFrame(title1,
new TGLayoutHints(kLHintsTop, 0, 0, 2, 0));