The Gaudi Framework  v30r3 (a5ef0a68)
RootAddress.h
Go to the documentation of this file.
1 //====================================================================
2 // RootAddress.h
3 //--------------------------------------------------------------------
4 //
5 // Author : M.Frank
6 //====================================================================
7 #ifndef GAUDIROOTCNV_ROOTADDRESS_H
8 #define GAUDIROOTCNV_ROOTADDRESS_H
9 
10 // Framework include files
12 #include "TTreeFormula.h"
13 
14 // Forward declaration
15 class TTree;
16 class TTreeFormula;
17 
18 /*
19  * Gaudi namespace declaration
20  */
21 namespace Gaudi
22 {
23 
24  // Forward declarations
25  class RootDataConnection;
26 
37  class GAUDI_API RootAddress : virtual public GenericAddress
38  {
39  public:
41  TTreeFormula* select = nullptr;
43  TTree* section = nullptr;
44 
45  public:
47  RootAddress( long svc, const CLID& clid, const std::string& p1 = "", const std::string& p2 = "",
48  unsigned long ip1 = 0, unsigned long ip2 = 0 )
49  : GenericAddress( svc, clid, p1, p2, ip1, ip2 )
50  {
51  }
53  virtual ~RootAddress() { delete select; }
54  };
55 }
56 
57 #endif // GAUDIROOTCNV_ROOTADDRESS_H
Description:
Definition: RootAddress.h:37
Generic Transient Address.
STL class.
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
#define GAUDI_API
Definition: Kernel.h:104
Helper functions to set/get the application return code.
Definition: __init__.py:1
RootAddress(long svc, const CLID &clid, const std::string &p1="", const std::string &p2="", unsigned long ip1=0, unsigned long ip2=0)
Full constructor.
Definition: RootAddress.h:47
virtual ~RootAddress()
Standard Destructor.
Definition: RootAddress.h:53