TH1Data.h
Go to the documentation of this file.
1 #ifndef art_test_TestObjects_TH1Data_h
2 #define art_test_TestObjects_TH1Data_h
3 
4 #include "TH1D.h"
5 
6 namespace arttest {
7  struct TH1Data;
8 }
9 
11  TH1Data();
12  TH1D data;
13  void
15  {
16  data.Add(&other.data);
17  }
18 };
19 
20 #endif /* art_test_TestObjects_TH1Data_h */
21 
22 // Local Variables:
23 // mode: c++
24 // End:
void aggregate(TH1Data const &other)
Definition: TH1Data.h:14