LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
RunData.h
Go to the documentation of this file.
1 #ifndef LARCOREOBJ_SUMMARYDATA_RUNDATA_H
9 #define LARCOREOBJ_SUMMARYDATA_RUNDATA_H
10 
11 #include <string>
12 
13 namespace sumdata {
14 
15  class RunData {
16 
17  public:
18  RunData(); // Default constructor
19 
23  void aggregate(RunData const& other);
24 
25  private:
26  std::string fDetName;
27 
28  public:
29  explicit RunData(std::string const& detectorName);
30  std::string const& DetName() const;
31 
32  }; // RunData
33 } // namespace sumdata
34 
35 inline std::string const& sumdata::RunData::DetName() const
36 {
37  return fDetName;
38 }
39 
40 #endif // LARCOREOBJ_SUMMARYDATA_RUNDATA_H
std::string const & DetName() const
Definition: RunData.h:35
std::string fDetName
Detector name.
Definition: RunData.h:26
std::string detectorName
void aggregate(RunData const &other)
Definition: RunData.cxx:22