ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VariableArrayContainer.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file VariableArrayContainer.h
1 #ifndef VARARRAY_VARIABLEARRAYCONTAINER_H
2 #define VARARRAY_VARIABLEARRAYCONTAINER_H
3 
4 #include <phool/PHObject.h>
5 
6 #include <iostream>
7 
8 class TObjArray;
9 class VariableArray;
10 
12 {
13  public:
15  ~VariableArrayContainer() override;
16 
17  void identify(std::ostream &os = std::cout) const override;
18  void AddVarArray(VariableArray *var);
19  // Here are the very explicit set routines...
20  void Reset() override;
21 
22  protected:
23  TObjArray *arraycontainer;
24 
25  ClassDefOverride(VariableArrayContainer, 1)
26 };
27 
28 #endif