Hall C ROOT/C++ Analyzer (hcana)
Loading...
Searching...
No Matches
THcRun.cxx
Go to the documentation of this file.
1
9#include "THcRun.h"
10#include "THcGlobals.h"
11#include "TSystem.h"
12
13using namespace std;
14
15//_____________________________________________________________________________
16THcRun::THcRun( const char* fname, const char* description ) :
17 THaRun(fname, description)
18{
19 // Normal & default constructor
20
22}
23
24//_____________________________________________________________________________
25THcRun::THcRun( const THcRun& rhs ) :
26 THaRun(rhs)
27{
28 // Copy ctor
29
31}
32
33//_____________________________________________________________________________
34THcRun::THcRun( const vector<TString>& pathList, const char* filename,
35 const char* description )
36 : THaRun(pathList, filename, description)
37{
38
40}
41
42//_____________________________________________________________________________
44{
45 // Assignment operator. Not really sure what I (saw) am doing here.
46
47 if (this != &rhs) {
50 }
51 return *this;
52}
53
54//_____________________________________________________________________________
56{
57 // Destructor.
58
59}
60
61//_____________________________________________________________________________
62void THcRun::Print( Option_t* opt ) const
63{
64 THaRun::Print( opt );
65 // fHcParms->Print();
66}
67
const char Option_t
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
ClassImp(VDC::AnalyticTTDConv) using namespace std
R__EXTERN class THcParmList * gHcParms
Definition THcGlobals.h:11
virtual void Print(Option_t *opt="") const
virtual THaRun & operator=(const THaRunBase &rhs)
Description of a CODA run on disk with Hall C parameter DB.
Definition THcRun.h:13
THcRun & operator=(const THaRunBase &rhs)
Definition THcRun.cxx:43
THcRun(const char *filename="", const char *description="")
Definition THcRun.cxx:16
virtual ~THcRun()
Definition THcRun.cxx:55
THcParmList * fHcParms
Definition THcRun.h:26
virtual void Print(Option_t *opt="") const
Definition THcRun.cxx:62
STL namespace.