Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
REveVSD.hxx
Go to the documentation of this file.
1// @(#)root/eve7:$Id$
2// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4/*************************************************************************
5 * Copyright (C) 1995-2019, 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 ROOT7_REveVSD
13#define ROOT7_REveVSD
14
15#include <ROOT/REveUtil.hxx>
17
18class TTree;
19class TFile;
20class TDirectory;
21
22namespace ROOT {
23namespace Experimental {
24
25class REveVSD : public TObject {
26 REveVSD(const REveVSD &) = delete;
27 REveVSD &operator=(const REveVSD &) = delete;
28
29protected:
30 TFile *fFile{nullptr}; //!
31 TDirectory *fDirectory{nullptr}; //!
32
35
36public:
37 TTree *fTreeK{nullptr}; //! Kinematics.
38 TTree *fTreeH{nullptr}; //! Hits.
39 TTree *fTreeC{nullptr}; //! Clusters.
40 TTree *fTreeR{nullptr}; //! Reconstructed tracks.
41 TTree *fTreeKK{nullptr}; //! Kinks.
42 TTree *fTreeV0{nullptr}; //! VO's.
43 TTree *fTreeCC{nullptr}; //! Cascades.
44 TTree *fTreeGI{nullptr}; //! Sim-Rec cross references.
45
46 REveMCTrack fK, *fpK{nullptr}; //!
47 REveHit fH, *fpH{nullptr}; //!
48 REveCluster fC, *fpC{nullptr}; //!
49 REveRecTrack fR, *fpR{nullptr}; //!
50 REveRecKink fKK, *fpKK{nullptr}; //!
51 REveRecV0 fV0, *fpV0{nullptr}; //!
52 REveRecCascade fCC, *fpCC{nullptr}; //!
53 REveMCRecCrossRef fGI, *fpGI{nullptr}; //!
54
55public:
56 REveVSD(const char *name = "REveVSD", const char *title = "");
57 ~REveVSD() override;
58
59 virtual void SetDirectory(TDirectory *dir);
60
61 virtual void CreateTrees();
62 virtual void DeleteTrees();
63
64 virtual void CreateBranches();
65 virtual void WriteTrees();
66
67 virtual void LoadTrees();
68 virtual void SetBranchAddresses();
69
71
72 ClassDefOverride(REveVSD, 1); // Visualization Summary Data - a collection of trees holding standard event data in experiment independent format.
73};
74
75} // namespace Experimental
76} // namespace ROOT
77
78#endif
char name[80]
Definition TGX11.cxx:110
REveCluster Reconstructed cluster (also used in VSD).
REveHit Monte Carlo hit (also used in VSD).
REveMCRecCrossRef Cross-reference of sim/rec data per particle (also used in VSD).
REveRecKink Reconstructed kink (also used in VSD).
virtual void CreateBranches()
Create internal VSD branches.
Definition REveVSD.cxx:103
TTree * fTreeR
Clusters.
Definition REveVSD.hxx:40
TTree * fTreeH
Kinematics.
Definition REveVSD.hxx:38
static void DisableTObjectStreamersForVSDStruct()
Disable TObject streamers for those VSD structs that inherit from TObject directly.
Definition REveVSD.cxx:190
virtual void DeleteTrees()
Delete internal trees.
Definition REveVSD.cxx:89
REveVSD(const REveVSD &)=delete
TTree * fTreeKK
Reconstructed tracks.
Definition REveVSD.hxx:41
virtual void CreateTrees()
Create internal trees.
Definition REveVSD.cxx:73
REveMCRecCrossRef * fpGI
Definition REveVSD.hxx:53
virtual void WriteTrees()
Does nothing here ... reimplemented in sub-classes.
Definition REveVSD.cxx:143
REveMCTrack fK
Sim-Rec cross references.
Definition REveVSD.hxx:46
TTree * fTreeGI
Cascades.
Definition REveVSD.hxx:44
REveMCRecCrossRef fGI
Definition REveVSD.hxx:53
REveVSD & operator=(const REveVSD &)=delete
virtual void SetDirectory(TDirectory *dir)
Set directory in which the trees are (or will be) created.
Definition REveVSD.cxx:65
REveRecCascade * fpCC
Definition REveVSD.hxx:52
virtual void LoadTrees()
Load internal trees from directory.
Definition REveVSD.cxx:150
~REveVSD() override
Destructor.
Definition REveVSD.cxx:58
virtual void SetBranchAddresses()
Set branche addresses of internal trees.
Definition REveVSD.cxx:123
Describe directory structure in memory.
Definition TDirectory.h:45
A ROOT file is composed of a header, followed by consecutive data records (TKey instances) with a wel...
Definition TFile.h:53
Mother of all ROOT objects.
Definition TObject.h:41
A TTree represents a columnar dataset.
Definition TTree.h:79
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.