GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
9 University of Liverpool
10
11\created November 26, 2004
12
13\cpright Copyright (c) 2003-2025, 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
23namespace genie {
24
25class CacheBranchI : public TObject
26{
27public:
28 virtual ~CacheBranchI() {}
29protected:
30 CacheBranchI() : TObject() {}
31
32ClassDef(CacheBranchI,0)
33};
34
35} // genie namespace
36#endif // _CACHE_BRANCH_I_H_
The TObject at the root of concrete cache branches.
virtual ~CacheBranchI()
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25