Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** \class THcRun
\ingroup Base
\brief Description of a CODA run on disk with Hall C parameter DB
\author S. A. Wood, 31-October-2017
*/
#include "THcRun.h"
#include "THcGlobals.h"
#include "TSystem.h"
using namespace std;
//_____________________________________________________________________________
THcRun::THcRun( const char* fname, const char* description ) :
THaRun(fname, description)
{
// Normal & default constructor
fHcParms = gHcParms;
}
//_____________________________________________________________________________
THcRun::~THcRun()
{
// Destructor.
}
//_____________________________________________________________________________
void THcRun::Print( Option_t* opt ) const
{
THaRun::Print( opt );
fHcParms->Print();
}
ClassImp(THaRun)