ATLAS Offline Software
Loading...
Searching...
No Matches
IntArray.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_IntArray_h
6#define ISF_FASTCALOSIMEVENT_IntArray_h
7
8#include "TArrayI.h"
9#include "TObject.h"
10
11class IntArray : public TObject, public TArrayI {
12
13public:
14 IntArray();
15 IntArray(int);
16 ~IntArray();
17
18private:
19 ClassDef(IntArray, 1)
20};
21
22#endif