Class Reference for E1039 Core & Analysis Software
VariableArray.cc
Go to the documentation of this file.
1 #include "VariableArray.h"
2 
4 
5 using namespace std;
6 
7 VariableArray::VariableArray(const unsigned int idval)
8 {
9  id = idval;
10  nVal = 0;
11  sval = 0;
12  return;
13 }
14 
16 {
17  Reset();
18  return;
19 }
20 
21 void
22 VariableArray::identify(ostream &os) const
23 {
24  os << "contain " << nVal << " values" << endl;
25  for (unsigned int i = 0; i < nVal; i++)
26  {
27  os << "n: " << i << " val: " << sval[i] << endl;
28  }
29  return;
30 }
31 
32 void
33 VariableArray::set_val(const vector<short> &vec)
34 {
35  nVal = vec.size();
36  sval = new short[nVal];
37  vector<short>::const_iterator iter;
38  unsigned int i=0;
39  for (iter = vec.begin(); iter != vec.end(); iter++)
40  {
41  sval[i++] = *iter;
42  }
43  return;
44 }
45 
46 void
48 {
49  delete [] sval;
50  sval = 0;
51  nVal = 0;
52  return;
53 }
ClassImp(VariableArray) using namespace std
void set_val(const std::vector< short > &vec)
void identify(std::ostream &os=std::cout) const
void Reset()
Clear Event.
VariableArray(const unsigned int idval=0)
Definition: VariableArray.cc:7
virtual ~VariableArray()