ATLAS Offline Software
DoubleArray.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ISF_FASTCALOSIMEVENT_DoubleArray_h
6 #define ISF_FASTCALOSIMEVENT_DoubleArray_h
7 
8 #include "TArrayD.h"
9 #include "TObject.h"
10 
11 class DoubleArray : public TObject, public TArrayD {
12 
13 public:
14  DoubleArray();
15  DoubleArray(int);
16  ~DoubleArray();
17 
18 private:
19  ClassDef(DoubleArray, 1)
20 };
21 
22 #endif
DoubleArray::DoubleArray
DoubleArray()
Definition: DoubleArray.cxx:15
DoubleArray::~DoubleArray
~DoubleArray()
Definition: DoubleArray.cxx:17
DoubleArray
Definition: DoubleArray.h:11