Class Reference for E1039 Core & Analysis Software
SQScaler_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQScaler_v1.C
3  */
4 #include "SQScaler_v1.h"
5 
6 #include <limits>
7 #include <cmath>
8 
9 //#include <TMatrixF.h>
10 
11 using namespace std;
12 
14 
15 SQScaler_v1::SQScaler_v1() : _type(UNDEF), _name(""), _count(0)
16 {}
17 
18 void SQScaler_v1::identify(ostream& os) const {
19  os << "---SQScaler_v1--------------------" << endl;
20  os << " type: " << get_type() << endl;
21  os << " name: " << get_name() << endl;
22  os << " count: " << get_count() << endl;
23  os << "---------------------------------" << endl;
24  return;
25 }
26 
27 int SQScaler_v1::isValid() const {
28  return (_type != UNDEF && _name.length() > 0) ? 1 : 0;
29 }
ClassImp(SQScaler_v1)
virtual std::string get_name() const
Return the name of this scaler channel.
Definition: SQScaler_v1.h:25
void identify(std::ostream &os=std::cout) const
Definition: SQScaler_v1.cxx:18
virtual int get_count() const
Return the count of this scaler channel.
Definition: SQScaler_v1.h:28
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQScaler_v1.cxx:27
virtual ScalerType_t get_type() const
Return 'BOS' or 'EOS' according to the timing when this channel was read out.
Definition: SQScaler_v1.h:22
@ UNDEF
Definition: SQScaler.h:18