CacheBranchI.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::CacheBranchI
5 
6 \brief The TObject at the root of concrete cache branches
7 
8 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
9  University of Liverpool & STFC Rutherford Appleton Laboratory
10 
11 \created November 26, 2004
12 
13 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
14  For the full text of the license visit http://copyright.genie-mc.org
15 */
16 //____________________________________________________________________________
17 
18 #ifndef _CACHE_BRANCH_I_H_
19 #define _CACHE_BRANCH_I_H_
20 
21 #include <TObject.h>
22 
23 namespace genie {
24 
25 class CacheBranchI : public TObject
26 {
27 public:
28  virtual ~CacheBranchI() {}
29 protected:
30  CacheBranchI() : TObject() {}
31 
33 };
34 
35 } // genie namespace
36 #endif // _CACHE_BRANCH_I_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
virtual ~CacheBranchI()
Definition: CacheBranchI.h:28
The TObject at the root of concrete cache branches.
Definition: CacheBranchI.h:25