Hall C ROOT/C++ Analyzer (hcana)
Loading...
Searching...
No Matches
THcRun.h
Go to the documentation of this file.
1#ifndef ROOT_THcRun
2#define ROOT_THcRun
3
5//
6// THaRun
7//
9
10#include "THaRun.h"
11#include "THcParmList.h"
12
13class THcRun : public THaRun {
14
15 public:
16 THcRun( const char* filename="", const char* description="" );
17 THcRun( const THcRun& run );
18 THcRun( const std::vector<TString>& pathList, const char* filename,
19 const char* description="" );
20 THcRun& operator=( const THaRunBase& rhs );
21 virtual ~THcRun();
22 virtual void Print( Option_t* opt="" ) const;
23 THcParmList* GetHCParms() const { return fHcParms; }
24
25 private:
26 THcParmList* fHcParms; /* gHcParms object */
27
29};
30#endif
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
A list parameters and their values.
Definition THcParmList.h:27
Description of a CODA run on disk with Hall C parameter DB.
Definition THcRun.h:13
THcParmList * GetHCParms() const
Definition THcRun.h:23
THcRun & operator=(const THaRunBase &rhs)
Definition THcRun.cxx:43
virtual ~THcRun()
Definition THcRun.cxx:55
THcParmList * fHcParms
Definition THcRun.h:26
virtual void Print(Option_t *opt="") const
Definition THcRun.cxx:62
ClassDef(THcRun, 0)