MockCluster.h
Go to the documentation of this file.
1 #ifndef art_test_TestObjects_MockCluster_h
2 #define art_test_TestObjects_MockCluster_h
3 
7 
8 #include <vector>
9 
10 namespace arttest {
11  struct MockCluster;
12 }
13 
15 
17 
18  MockCluster() : skew(0), cells(), eNum(0) {}
19 
20  short int skew;
21  CellList cells;
23 };
24 
25 namespace arttest {
26  typedef std::vector<arttest::MockCluster> MockClusterList;
27 }
28 
29 #endif /* art_test_TestObjects_MockCluster_h */
30 
31 // Local Variables:
32 // mode: c++
33 // End:
art::PtrVector< arttest::SimpleDerived > CellList
Definition: MockCluster.h:16
std::vector< arttest::MockCluster > MockClusterList
Definition: MockCluster.h:26
IDNumber_t< Level::Event > EventNumber_t
Definition: IDNumber.h:118
art::EventNumber_t eNum
Definition: MockCluster.h:22