Logo ROOT   6.16/01
Reference Guide
TTVSession.h
Go to the documentation of this file.
1// @(#)root/treeviewer:$Id$
2//Author : Andrei Gheata 21/02/01
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TTVSession
13#define ROOT_TTVSession
14
15///////////////////////////////////////////////////////////////////////////////
16// //
17// TTVSession and TTVRecord - I/O classes for TreeViewer session handling //
18// TTreeViewer //
19// //
20///////////////////////////////////////////////////////////////////////////////
21
22#include "TGFrame.h"
23
24class TTreeViewer;
25class TClonesArray;
26class TGVButtonGroup;
27
28class TTVRecord : public TObject {
29
30public:
31 TString fName; // name of this record
32 TString fX, fXAlias; // X expression and alias
33 TString fY, fYAlias; // Y expression and alias
34 TString fZ, fZAlias; // Z expression and alias
35 TString fCut, fCutAlias; // cut expression and alias
36 TString fOption; // graphic option
37 Bool_t fScanRedirected; // redirect switch
38 Bool_t fCutEnabled; // true if current cut is active
39 TString fUserCode; // command executed when record is conected
40 Bool_t fAutoexec; // autoexecute user code command
41public:
42 TTVRecord(); // default constructor
43 ~TTVRecord() {} // destructor
44
45 void ExecuteUserCode();
46 void FormFrom(TTreeViewer *tv);
47 void PlugIn(TTreeViewer *tv);
48 const char *GetX() const {return fX;}
49 const char *GetY() const {return fY;}
50 const char *GetZ() const {return fZ;}
51 virtual const char *GetName() const {return fName;}
52 const char *GetUserCode() const {return fUserCode;}
53 Bool_t HasUserCode() const {return fUserCode.Length() != 0 ? kTRUE : kFALSE;}
55 void SetAutoexec(Bool_t autoexec=kTRUE) {fAutoexec=autoexec;} // *TOGGLE* *GETTER=MustExecuteCode
56 void SetName(const char* name = "") {fName = name;}
57 void SetX(const char *x = "", const char *xal = "-empty-") {fX = x; fXAlias = xal;}
58 void SetY(const char *y = "", const char *yal = "-empty-") {fY = y; fYAlias = yal;}
59 void SetZ(const char *z = "", const char *zal = "-empty-") {fZ = z; fZAlias = zal;}
60 void SetCut(const char *cut = "", const char *cal = "-empty-") {fCut = cut; fCutAlias = cal;}
61 void SetOption(const char *option = "") {fOption = option;}
62 void SetRC(Bool_t redirect = kFALSE, Bool_t cut = kTRUE) {fScanRedirected = redirect; fCutEnabled = cut;}
63 void SetUserCode(const char *code, Bool_t autoexec=kTRUE) {fUserCode = code; fAutoexec=autoexec;} // *MENU*
64 void SaveSource(std::ofstream &out);
65
66 ClassDef(TTVRecord, 0) // A draw record for TTreeViewer
67};
68
69class TTVSession : public TObject {
70
71private:
72 TClonesArray *fList; // list of TV records
73 TString fName; // name of this session
74 TTreeViewer *fViewer; // associated tree viewer
75 Int_t fCurrent; // index of current record
76 Int_t fRecords; // number of records
77
78public:
81 virtual const char *GetName() const {return fName;}
82 void SetName(const char *name) {fName = name;}
83 void SetRecordName(const char* name);
84 TTVRecord *AddRecord(Bool_t fromFile = kFALSE);
88 TTVRecord *First() {return GetRecord(0);}
92
93 void RemoveLastRecord();
94 void Show(TTVRecord *rec);
95 void SaveSource(std::ofstream &out);
96 void UpdateRecord(const char *name);
97
98 ClassDef(TTVSession, 0) // A tree viewer session
99};
100
101#endif
int Int_t
Definition: RtypesCore.h:41
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassDef(name, id)
Definition: Rtypes.h:324
An array of clone (identical) objects.
Definition: TClonesArray.h:32
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131
Ssiz_t Length() const
Definition: TString.h:405
I/O classes for TreeViewer session handling.
Definition: TTVSession.h:28
void SetX(const char *x="", const char *xal="-empty-")
Definition: TTVSession.h:57
TString fXAlias
Definition: TTVSession.h:32
Bool_t MustExecuteCode() const
Definition: TTVSession.h:54
void SetOption(const char *option="")
Definition: TTVSession.h:61
Bool_t fScanRedirected
Definition: TTVSession.h:37
~TTVRecord()
Definition: TTVSession.h:43
TString fName
Definition: TTVSession.h:31
void SetUserCode(const char *code, Bool_t autoexec=kTRUE)
Definition: TTVSession.h:63
TString fZ
Definition: TTVSession.h:34
Bool_t fCutEnabled
Definition: TTVSession.h:38
TString fCutAlias
Definition: TTVSession.h:35
TString fX
Definition: TTVSession.h:32
void ExecuteUserCode()
Execute user-defined code.
Definition: TTVSession.cxx:42
const char * GetY() const
Definition: TTVSession.h:49
void SetZ(const char *z="", const char *zal="-empty-")
Definition: TTVSession.h:59
Bool_t HasUserCode() const
Definition: TTVSession.h:53
void SetName(const char *name="")
Definition: TTVSession.h:56
void SaveSource(std::ofstream &out)
Save the TTVRecord in a C++ macro file.
Definition: TTVSession.cxx:98
void SetRC(Bool_t redirect=kFALSE, Bool_t cut=kTRUE)
Definition: TTVSession.h:62
Bool_t fAutoexec
Definition: TTVSession.h:40
void FormFrom(TTreeViewer *tv)
Populate members from treeviewer tv.
Definition: TTVSession.cxx:55
const char * GetX() const
Definition: TTVSession.h:48
void SetY(const char *y="", const char *yal="-empty-")
Definition: TTVSession.h:58
virtual const char * GetName() const
Returns name of object.
Definition: TTVSession.h:51
TString fZAlias
Definition: TTVSession.h:34
TString fYAlias
Definition: TTVSession.h:33
TString fUserCode
Definition: TTVSession.h:39
void SetAutoexec(Bool_t autoexec=kTRUE)
Definition: TTVSession.h:55
const char * GetUserCode() const
Definition: TTVSession.h:52
void PlugIn(TTreeViewer *tv)
Change treeviewer status to this record.
Definition: TTVSession.cxx:74
TTVRecord()
TTVRecord default constructor.
Definition: TTVSession.cxx:30
TString fCut
Definition: TTVSession.h:35
TString fOption
Definition: TTVSession.h:36
void SetCut(const char *cut="", const char *cal="-empty-")
Definition: TTVSession.h:60
TString fY
Definition: TTVSession.h:33
const char * GetZ() const
Definition: TTVSession.h:50
I/O classes for TreeViewer session handling.
Definition: TTVSession.h:69
TTVRecord * Last()
Definition: TTVSession.h:89
TTVSession(TTreeViewer *tv)
Constructor.
Definition: TTVSession.cxx:138
void SaveSource(std::ofstream &out)
Save the TTVSession in a C++ macro file.
Definition: TTVSession.cxx:253
~TTVSession()
Destructor.
Definition: TTVSession.cxx:150
TTVRecord * GetRecord(Int_t i)
Return record at index i.
Definition: TTVSession.cxx:186
TTreeViewer * fViewer
Definition: TTVSession.h:74
void SetRecordName(const char *name)
Set record name.
Definition: TTVSession.cxx:209
void Show(TTVRecord *rec)
Display record rec.
Definition: TTVSession.cxx:242
TTVRecord * GetCurrent()
Definition: TTVSession.h:86
virtual const char * GetName() const
Returns name of object.
Definition: TTVSession.h:81
TClonesArray * fList
Definition: TTVSession.h:72
TTVRecord * Previous()
Definition: TTVSession.h:91
Int_t fCurrent
Definition: TTVSession.h:75
void SetName(const char *name)
Definition: TTVSession.h:82
TString fName
Definition: TTVSession.h:73
Int_t GetEntries()
Definition: TTVSession.h:85
TTVRecord * First()
Definition: TTVSession.h:88
void RemoveLastRecord()
Remove current record from list.
Definition: TTVSession.cxx:222
TTVRecord * Next()
Definition: TTVSession.h:90
TTVRecord * AddRecord(Bool_t fromFile=kFALSE)
Add a record.
Definition: TTVSession.cxx:159
void UpdateRecord(const char *name)
Updates current record according to new X, Y, Z settings.
Definition: TTVSession.cxx:270
Int_t fRecords
Definition: TTVSession.h:76
A graphic user interface designed to handle ROOT trees and to take advantage of TTree class features.
Definition: TTreeViewer.h:56
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17