]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/OnlineDisplay/StartDisplayMacro.C
Jochen's TPCLib source code from Jan 2006 merged
[u/mrichter/AliRoot.git] / HLT / TPCLib / OnlineDisplay / StartDisplayMacro.C
index 19c0f7c8d80d91085bdf7cecaf354bb28121e412..2652c16800e08ca8d5b3d63cc1aa515fdbdb1ba8 100644 (file)
+/************************************************************************
+**
+** This file is property of and copyright by the Computer Science/Computer 
+** Engineering Group, Kirchhoff Institute for Physics, Ruprecht-Karls-
+** University, Heidelberg, Germany, 2005
+** This file has been written by Jochen Thaeder, 
+** thaeder@kip.uni-heidelberg.de
+**
+**
+** See the file license.txt for details regarding usage, modification,
+** distribution and warranty.
+** Important: This file is provided without any warranty, including
+** fitness for any particular purpose.
+**
+**
+** Newer versions of this file's package will be made available from 
+** http://www.kip.uni-heidelberg.de/ti/HLT/
+** or the corresponding page of the Heidelberg Alice HLT group.
+**
+*************************************************************************/
+
+// *****************************************************************
+// *        USEAGE in ROOT
+// *****************************************************************
+// * -->LOAD the macro first:
+// * .L ("HLT-OnlineDisplay-HOMER.C");
+// *
+// * --> use with ".p FUNCTION;" OR here as macro function
+// * ODH_Init();
+// * ODH_Connect(Char_t *hostname1,Int_t port1,Char_t *hostname2,Int_t port2,Char_t *hostname3,Int_t port3);
+// * ODH_DisplayEvent();                                    // Display NextEvent
+// *
+// * ODH_SetSliceRange();                                   // Sets Slice: ALL
+// * ODH_SetSliceRange(Int_t slice);                        // Sets Slice: "slice"
+// * ODH_SetSliceRange(Int_t minslice, Int_t maxslice);     // Sets Slice: "minslice" to  "maxslice"
+// * ODH_SetSlicePair(Int_t slice);                         // Sets Slice: "slice" and  "slice"+9
+// * ODH_SetSlicePair(Int_t minslice, Int_t maxslice);      // Sets Slice: ["minslice" to  "maxslice"] and  ["minslice"+9 to  "maxslice"+9]
+// *
+// * ODH_SetCluster(Bool_t used, Bool_t unused);            // Sets Cluster: used, unused, all(= used && unused)
+// * 
+// * ODH_SetInvert();                                       // Invert 3D Display
+// * ODH_SetKeepView(Bool_t keepview);                      // Keep 3D View
+// * 
+// * ODH_SetPadRow(Int_t slice, Int_t padrow, Int_t pad);   // Set PadRow "padrow" within Slice "slice" and Pad "pad"(=0 per default)  
+// *
+// * ODH_SetSelectTrack(Bool_t switch, Int_t slice, Int_t track); // with switch=true :Select Single Track "track" in Slice "slice"
+// *                                                              // turn off: ODH_SetSelectTrack();
+// *
+// * ODH_SetTrack(Int_t minhits, Float_t ptthreshold);      // Sets Cuts in order to display tracks, both default is 0
+// * 
+// * ODH_Set3D(Bool_t tracks, Bool_t cluster, Bool_t padrow, Bool_t geometry);  // Switches for the 3D Display
+// * ODH_Set3DTracks(Bool_t on);                            // Set 3D tracks, default is off
+// * ODH_Set3DCluster(Bool_t on);                           // Set 3D cluster, default is off
+// * ODH_Set3DPadRow(Bool_t on);                            // Set 3D padrow, default is off
+// * ODH_Set3DGeometry(Bool_t on);                          // Set 3D geometry, default is off
+// *
+// *****************************************************************
 {
 
-//gROOT->Reset();
-
-gROOT->LoadMacro("HLT-OnlineDisplay-HOMER.C");
-
-HLT_OnlineDisplay_HOMER();
-//ODH_Init("./GEO","/home/HLT/src/versions/devel/Util/HOMER/reader/lib/Linux-i686/");
-
-ODH_Init("./GEO","/home/jthaeder/HLT/AnalysisChain/lib/Linux-i686/");
-//ODH_Init("./GEO","/home/jthaeder/HLT/src/lib_jthaeder/");
-
-//ODH_Connect("e107",42002,NULL,NULL,"e107",42003);     // pprun_1_nB
-//ODH_Connect(NULL,NULL,NULL,NULL,"e107",42003);
-
-
-ODH_Connect(NULL,NULL,"eh000",42002,NULL,NULL); // --   HUGE_TEST with RAW
-//ODH_DisplayNextEvent(false,false,true,NULL);
-
-bar = new TControlBar("vertical", "HLT DISPLAY");
-
-bar->AddButton("Next clusters",".p ODH_DisplayNextEvent(true,false,false,NULL)", "Show Next Event");
-bar->AddButton("Next tracks",".p ODH_DisplayNextEvent(false,true,false,NULL)", "Show Next Event");
-bar->AddButton("Next clusters and tracks",".p ODH_DisplayNextEvent(true,true,false,NULL)", "Show Next Event");
-
-bar->AddSeparator();
-
-bar->AddButton("Show all",".p ODH_SetSliceRange()", "Show Next Event");
-
-bar->AddButton("Show Sector 0",".p ODH_SetSliceRange(0)", "Show Next Event");
-bar->AddButton("Show Sector 1",".p ODH_SetSliceRange(1)", "Show Next Event");
-bar->AddButton("Show Sector 2",".p ODH_SetSliceRange(2)", "Show Next Event");
-bar->AddButton("Show Sector 9",".p ODH_SetSliceRange(9)", "Show Next Event");
-bar->AddButton("Show Sector 10",".p ODH_SetSliceRange(10)", "Show Next Event");
-bar->AddButton("Show Sector 11",".p ODH_SetSliceRange(11)", "Show Next Event");
-
-bar->AddButton("Show Sector 0 - 2",".p ODH_SetSliceRange(0,2)", "Show Next Event");
-bar->AddButton("Show Sector 9 - 11",".p ODH_SetSliceRange(9,11)", "Show Next Event");
-bar->AddButton("Show Sector 0 - 11",".p ODH_SetSliceRange(0,11)", "Show Next Event");
-
-bar->AddButton("Show pair 0",".p ODH_SetSlicePair(0)", "Show Next Event");
-bar->AddButton("Show pair 1",".p ODH_SetSlicePair(1)", "Show Next Event");
-bar->AddButton("Show pair 2",".p ODH_SetSlicePair(2)", "Show Next Event");
-
-bar->AddButton("Show Geometry",".p ODH_SetDrawGeo()", "Show Next Event");
-
-bar->AddButton("Invert",".p ODH_SetInvert()","ccc");
-
-bar->AddSeparator();
-// PADROW 0 - 158
-
-bar->AddButton("Setup PadRow 20 with Histogram",".p ODH_SetupPadRow(1,2,20)","Setup PadRow");
-bar->AddButton("Setup PadRow 20 with Geometry",".p ODH_SetupPadRow(0,2,20)","Setup PadRow");
-
-bar->AddButton("Display PadRow",".p ODH_DisplayNextEvent(false,false,true,NULL)","Display PadRow");
-
-bar->AddButton("Display PadRow with Clusters",".p ODH_DisplayNextEvent(true,false,true,NULL)","Display PadRow");
-bar->AddButton("Display PadRow with Tracks",".p ODH_DisplayNextEvent(false,true,true,NULL)","Display PadRow");
-bar->AddButton("Display PadRow with Clusters and Tracks",".p ODH_DisplayNextEvent(true,true,true,NULL)","Display PadRow");
-
+    gROOT->LoadMacro("HLT-OnlineDisplay-HOMER.C");
+
+    // --- LOAD DISPLAY FUNCTIONS
+    HLT_OnlineDisplay_HOMER();
+    
+    // --- INITIALIZE DISPLAY, LOAD GEOMETRY FILE, LOAD LIBRARIES (HOMER,HLT,..)
+    ODH_Init();
+
+    //  --- CONNECT TO TCP DUMP SUBSCRIBERS
+    ODH_Connect("e300",42002,NULL,NULL,"e300",42001);   
+
+    // --- Next Event
+    ODH_DisplayEvent();
+
+    barCl = new TControlBar("vertical", "HLT DISPLAY - Cluster");
+    barCl->AddButton("All Cluster",".p ODH_SetCluster(true,true)", "All Cluster");
+    barCl->AddButton("Used Cluster",".p ODH_SetCluster(true,false)", "Used Cluster");
+    barCl->AddButton("Unused Cluster",".p ODH_SetCluster(false,true)", "Unused Cluster");
+    barCl->Show();
+    
+    bar = new TControlBar("vertical", "HLT DISPLAY");
+    bar->AddButton("Next Event",".p ODH_DisplayEvent()", "Next Event");
+    bar->AddSeparator();
+    bar->AddButton("Show all slices",".p ODH_SetSliceRange()", "Show all slices");
+    bar->AddSeparator();
+    bar->AddButton("Keep 3D View",".p ODH_SetKeepView(true)", "Keep 3D View");
+    bar->AddButton("!Keep 3D View",".p ODH_SetKeepView(false)", "Keep 3D View");
+    bar->AddButton("Invert 3D View",".p ODH_SetInvert()","Invert 3D View");
+    bar->AddSeparator();
+    bar->AddButton("Show 3D Tracks",".p ODH_Set3DTracks(true)","Show 3D Tracks");
+    bar->AddButton("!Show 3D Tracks",".p ODH_Set3DTracks()","!Show 3D Tracks");
+    bar->AddButton("Show 3D Cluster",".p ODH_Set3DCluster(true)","Show 3D Cluster");
+    bar->AddButton("!Show 3D Cluster",".p ODH_Set3DCluster()","!Show 3D Cluster");
+    bar->AddButton("Show 3D PadRow",".p ODH_Set3DPadRow(true)","Show 3D PadRow");
+    bar->AddButton("!Show 3D PadRow",".p ODH_Set3DPadRow()","!Show 3D PadRow");
+    bar->AddButton("Show 3D Geometry",".p ODH_Set3DGeometry(true)","Show 3D Geometry");
+    bar->AddButton("!Show 3D Geometry",".p ODH_Set3DGeometry()","!Show 3D Geometry");
+    bar->AddSeparator();
+    bar->AddButton("Show Sector 0",".p ODH_SetSliceRange(0)", "Show Next Event");
+    bar->AddButton("Show Sector 9",".p ODH_SetSliceRange(9)", "Show Next Event");
+    bar->AddButton("Show Sector 18",".p ODH_SetSliceRange(18)", "Show Next Event");
+    bar->AddButton("Show Sector 27",".p ODH_SetSliceRange(27)", "Show Next Event");
+    bar->AddButton("Show Sector 0 - 2",".p ODH_SetSliceRange(0,2)", "Show Next Event");
+    bar->AddButton("Show Sector 0 - 9",".p ODH_SetSliceRange(0,9)", "Show Next Event");
+    bar->AddButton("Show pair 0",".p ODH_SetSlicePair(0)", "Show Next Event");
+    bar->AddButton("Show pair 0 - 2",".p ODH_SetSlicePair(0,2)", "Show Next Event");
+    
+    bar->AddSeparator();
+
+bar->AddButton("Close","gROOT.Reset(\"a\")", "Close");
 bar->Show();
 gROOT->SaveContext();
 }