ATLAS Offline Software
Loading...
Searching...
No Matches
CoolLumiUtilsTest.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef COOLLUMIUTILITIES_COOLLUMIUTILSTEST_H
6#define COOLLUMIUTILITIES_COOLLUMIUTILSTEST_H
7
8class MyTestClass {
9
10 public:
12
13 void setValue(int);
14 int getValue() const;
15
16 private:
18
19};
20
21#include <vector>
22
24
25 public:
27
28 void setValue(float);
29 float getValue() const;
30
31 void append(float);
32 const std::vector<float>& getList();
33
34 private:
35 float m_value;
36 std::vector<float> m_list;
37};
38
39class CoolLumiUtilsVector : public std::vector<double> {
40
41 public:
43 void append(double);
44
45};
46
47#endif
std::vector< float > m_list
const std::vector< float > & getList()
int getValue() const