QwAnalysis
VQwSubsystemParity.h
Go to the documentation of this file.
1 /**********************************************************\
2 * File: VQwSubsystemParity.h *
3 * *
4 * Author: P. M. King, Rakitha Beminiwattha *
5 * Time-stamp: <2007-05-08 15:40> *
6 \**********************************************************/
7 
8 
9 #ifndef __VQWSUBSYSTEMPARITY__
10 #define __VQWSUBSYSTEMPARITY__
11 
12 // ROOT headers
13 #include <TTree.h>
14 
15 // Qweak headers
16 #include "VQwSubsystem.h"
17 
18 // Forward declarations
19 class QwBlinder;
20 class QwParityDB;
21 class QwPromptSummary;
22 
23 
24 /**
25  * \class VQwSubsystemParity
26  * \ingroup QwAnalysis
27  *
28  * \brief Virtual base class for the parity subsystems
29  *
30  * Virtual base class for the classes containing the
31  * event-based information from each parity subsystem.
32  * This will define the interfaces used in communicating
33  * with the CODA routines.
34  *
35  */
36 class VQwSubsystemParity: virtual public VQwSubsystem {
37 
38  private:
39  /// Private default constructor (not implemented, will throw linker error on use)
41 
42  public:
43  /// Constructor with name
44  VQwSubsystemParity(const TString& name): VQwSubsystem(name) {
45  SetEventTypeMask(0x1); // only accept 0x1
46  };
47  /// Copy constructor
49  : VQwSubsystem(source)
50  { }
51  /// Default destructor
52  virtual ~VQwSubsystemParity() { };
53 
54  /// \brief Fill the database with MPS-based variables
55  /// Note that most subsystems don't need to do this.
56  virtual void FillDB_MPS(QwParityDB *db, TString type) {};
57  /// \brief Fill the database
58  virtual void FillDB(QwParityDB *db, TString type) { };
59  virtual void FillErrDB(QwParityDB *db, TString type) { };
60 
61  // VQwSubsystem routine is overridden. Call it at the beginning by VQwSubsystem::operator=(value)
62  virtual VQwSubsystem& operator= (VQwSubsystem *value) = 0;
63  virtual VQwSubsystem& operator+= (VQwSubsystem *value) = 0;
64  virtual VQwSubsystem& operator-= (VQwSubsystem *value) = 0;
65  virtual void Sum(VQwSubsystem *value1, VQwSubsystem *value2) = 0;
66  virtual void Difference(VQwSubsystem *value1, VQwSubsystem *value2) = 0;
67  virtual void Ratio(VQwSubsystem *numer, VQwSubsystem *denom) = 0;
68  virtual void Scale(Double_t factor) = 0;
69 
70  /// \brief Update the running sums for devices
71  virtual void AccumulateRunningSum(VQwSubsystem* value) = 0;
72  /// \brief remove one entry from the running sums for devices
73  virtual void DeaccumulateRunningSum(VQwSubsystem* value) = 0;
74 
75  /// \brief Calculate the average for all good events
76  virtual void CalculateRunningAverage() = 0;
77 
78  /// \brief Load the event cuts file
79  virtual Int_t LoadEventCuts(TString filename) = 0;
80  /// \brief Apply the single event cuts
81  virtual Bool_t ApplySingleEventCuts() = 0;
82  /// \brief Report the number of events failed due to HW and event cut failures
83  virtual void PrintErrorCounters() const = 0;
84  /// \brief Increment the error counters
85  virtual void IncrementErrorCounters() = 0;
86 
87  /// \brief Return the error flag to the top level routines related to stability checks and ErrorFlag updates
88  virtual UInt_t GetEventcutErrorFlag() = 0;
89  /// \brief Uses the error flags of contained data elements to update
90  /// Returns the error flag to the top level routines related
91  /// to stability checks and ErrorFlag updates
92  virtual UInt_t UpdateErrorFlag(){return GetEventcutErrorFlag();};
93 
94  /// \brief update the error flag in the subsystem level from the top level routines related to stability checks. This will uniquely update the errorflag at each channel based on the error flag in the corresponding channel in the ev_error subsystem
95  virtual void UpdateErrorFlag(const VQwSubsystem *ev_error) = 0;
96 
97 
98  /// \brief Blind the asymmetry of this subsystem
99  virtual void Blind(const QwBlinder *blinder) { return; };
100  /// \brief Blind the difference of this subsystem
101  virtual void Blind(const QwBlinder *blinder, const VQwSubsystemParity* subsys) { return; };
102 
103  /// \brief Print values of all channels
104  virtual void PrintValue() const { };
105 
106  virtual void WritePromptSummary(QwPromptSummary *ps, TString type) {};
107 
108 
109  virtual Bool_t CheckForEndOfBurst() const {return kFALSE;};
110 
111 }; // class VQwSubsystemParity
112 
113 #endif // __VQWSUBSYSTEMPARITY__
virtual void Blind(const QwBlinder *blinder)
Blind the asymmetry of this subsystem.
Definition of the pure virtual base class of all subsystems.
virtual void Blind(const QwBlinder *blinder, const VQwSubsystemParity *subsys)
Blind the difference of this subsystem.
virtual void FillDB(QwParityDB *db, TString type)
Fill the database.
virtual void PrintValue() const
Print values of all channels.
Class for blinding data, adapted from G0 blinder class.
Definition: QwBlinder.h:64
virtual UInt_t UpdateErrorFlag()
Uses the error flags of contained data elements to update Returns the error flag to the top level rou...
Virtual base class for the parity subsystems.
virtual Bool_t CheckForEndOfBurst() const
virtual void DeaccumulateRunningSum(VQwSubsystem *value)=0
remove one entry from the running sums for devices
virtual UInt_t GetEventcutErrorFlag()=0
Return the error flag to the top level routines related to stability checks and ErrorFlag updates...
virtual VQwSubsystem & operator-=(VQwSubsystem *value)=0
virtual void FillDB_MPS(QwParityDB *db, TString type)
Fill the database with MPS-based variables Note that most subsystems don&#39;t need to do this...
virtual void FillErrDB(QwParityDB *db, TString type)
virtual void CalculateRunningAverage()=0
Calculate the average for all good events.
void SetEventTypeMask(const UInt_t mask)
Set event type mask.
Definition: VQwSubsystem.h:166
virtual Int_t LoadEventCuts(TString filename)=0
Load the event cuts file.
virtual void IncrementErrorCounters()=0
Increment the error counters.
virtual void PrintErrorCounters() const =0
Report the number of events failed due to HW and event cut failures.
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
virtual void Ratio(VQwSubsystem *numer, VQwSubsystem *denom)=0
virtual Bool_t ApplySingleEventCuts()=0
Apply the single event cuts.
virtual void Scale(Double_t factor)=0
virtual void Difference(VQwSubsystem *value1, VQwSubsystem *value2)=0
VQwSubsystemParity(const VQwSubsystemParity &source)
Copy constructor.
VQwSubsystemParity(const TString &name)
Constructor with name.
virtual void AccumulateRunningSum(VQwSubsystem *value)=0
Update the running sums for devices.
virtual ~VQwSubsystemParity()
Default destructor.
virtual void Sum(VQwSubsystem *value1, VQwSubsystem *value2)=0
virtual void WritePromptSummary(QwPromptSummary *ps, TString type)
virtual VQwSubsystem & operator+=(VQwSubsystem *value)=0
virtual VQwSubsystem & operator=(VQwSubsystem *value)=0
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
VQwSubsystemParity()
Private default constructor (not implemented, will throw linker error on use)