]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/macros/tpc_gui.C
* EVE/macros/alieve_online.C
[u/mrichter/AliRoot.git] / EVE / macros / tpc_gui.C
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 // Function to spawn a gui for reading rootified raw-data from TPC sector test.
11 //
12 // To use:
13 // a) select AliEveTPCLoader entry in the list-tree view;
14 //    you'll get a dialog to steer the data-loading process in an adjacent window
15 // b) to select a ROOT file containing the raw-data double-click on 'File:'
16 //    text entry to spawn a file-dialog or type in the name
17 // c) click open to actually open the file and load an event
18
19 #ifdef __CINT__
20
21 class AliEveTPCData;
22 class AliEveTPCSector2D;
23 class AliEveTPCSector3D;
24
25 #else
26
27 #include <TEveManager.h>
28 #include <EveDet/AliEveTPCData.h>
29 #include <EveDet/AliEveTPCSector2D.h>
30 #include <EveDet/AliEveTPCSector3D.h>
31 #include <EveDet/AliEveTPCLoader.h>
32
33 #include <TSystem.h>
34 #include <TStyle.h>
35
36 #endif
37
38
39 AliEveTPCLoader* tpc_loader = 0;
40
41 void tpc_gui(const char *file=0, Int_t ievent=0)
42 {
43   gStyle->SetPalette(1, 0);
44
45   AliEveTPCLoader* l = tpc_loader = new AliEveTPCLoader;
46   AliEveTPCData*   d = new AliEveTPCData;
47   // d->SetLoadPedestal(5);
48   d->SetLoadThreshold(5);
49   d->SetAutoPedestal(kTRUE);
50   l->SetData(d);
51   l->SetDoubleSR(kTRUE);
52   l->SetInitParams(40, 980, 10); // min-time, max-time, threshold
53   // l->SetTPCEquipementMap("EquipmentIdMap.data");
54
55   gEve->AddElement(l);
56
57   if(file != 0) {
58     l->SetFile(file);
59     l->OpenFile();
60     l->GotoEvent(ievent);
61   }
62 }