Class Reference for E1039 Core & Analysis Software
SQSlowCont_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQSlowCont_v1.C
3  */
4 #include "SQSlowCont_v1.h"
5 
6 #include <limits>
7 #include <cmath>
8 
9 //#include <TMatrixF.h>
10 
11 using namespace std;
12 
14 
15 SQSlowCont_v1::SQSlowCont_v1() : _time_stamp(""), _name(""), _value(""), _type("")
16 {}
17 
18 void SQSlowCont_v1::identify(ostream& os) const {
19  os << "---SQSlowCont_v1--------------------" << endl;
20  os << " name: " << get_name() << endl;
21  os << "---------------------------------" << endl;
22  return;
23 }
24 
26  return (_name.length() > 0) ? 1 : 0;
27 }
ClassImp(SQSlowCont_v1)
int isValid() const
isValid returns non zero if object contains vailid data
void identify(std::ostream &os=std::cout) const
virtual std::string get_name() const
Return the name of this channel.
Definition: SQSlowCont_v1.h:25