00001 #include "TFndPreanGUI.h" 00002 00003 void FinudaPreanalysisShow() 00004 { 00005 // Add, handle and fill histogram in "TFndPreanShow" 00006 // "TFndPreanShow" is a friend class of "TFndPreanGUI": 00007 // the "TFndPreanGUI::PreanShow" data-member can be used in order to access 00008 // directly histograms 00009 00010 TFndPreanGUI *PreanShowGui = new TFndPreanGUI(); 00011 00012 00013 PreanShowGui->BuildGUI(); 00014 PreanShowGui->CustomizeGUI(); 00015 00016 PreanShowGui->MakeConnections(); 00017 PreanShowGui->MapGUI(); 00018 00019 PreanShowGui->FillCombos(); 00020 00021 // delete PreanShowGui; 00022 00023 }