Go to the source code of this file.
◆ ClassImp()
Definition at line 28 of file SampleMeta.cxx.
31{
32 void SampleMeta ::
33 testInvariant () const
34 {
35 }
36
37
38
39 SampleMeta ::
40 SampleMeta ()
41 : Sample ("unnamed")
42 {
44 }
45
46
47
48 SampleMeta ::
49 SampleMeta (const std::string& name)
51 {
53 }
54
55
56
57 std::size_t SampleMeta ::
58 getNumFiles () const
59 {
61
62 return 0;
63 }
64
65
66
67 std::string SampleMeta ::
68 getFileName (std::size_t ) const
69 {
71 RCU_THROW_MSG (
"fileName() should not be called on SampleMeta");
72 return "";
73 }
74
75
76
77 SamplePtr SampleMeta ::
78 doMakeLocal () const
79 {
81 RCU_THROW_MSG (
"makeLocal() should not be called on SampleMeta");
82 return 0;
83 }
84
85
86
87 std::vector<std::string> SampleMeta ::
88 doMakeFileList () const
89 {
91
92 std::vector<std::string>
result;
94 }
95}
#define RCU_NEW_INVARIANT(x)
#define RCU_READ_INVARIANT(x)
#define RCU_THROW_MSG(message)