ATLAS Offline Software
ClusterTOBArray.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 // ClusterTOBArray.h
5 // TopoCore
6 // Created by Joerg Stelzer on 11/17/12.
7 
8 #ifndef __TopoCore__ClusterTOBArray__
9 #define __TopoCore__ClusterTOBArray__
10 
11 #include <iostream>
14 #include "L1TopoEvent/ClusterTOB.h"
15 #include <vector>
16 
17 namespace TCS {
18 
19  class ClusterTOBArray : public InputTOBArray, public DataArrayImpl<ClusterTOB> {
20  public:
21 
22  // default constructor
23  ClusterTOBArray(const std::string & name, unsigned int reserve);
24 
25  virtual unsigned int size() const { return DataArrayImpl<ClusterTOB>::size(); }
26 
27  private:
28  virtual void print(std::ostream&) const;
29  };
30 
31 }
32 
33 #endif
TCS::ClusterTOBArray
Definition: ClusterTOBArray.h:19
InputTOBArray.h
TCS::DataArray::name
const std::string & name() const
Definition: DataArray.h:20
TCS::DataArrayImpl
Definition: DataArrayImpl.h:13
TCS::DataArrayImpl::size
size_t size() const
Definition: DataArrayImpl.h:30
TCS::InputTOBArray
Definition: InputTOBArray.h:15
DataArrayImpl.h
TCS::ClusterTOBArray::ClusterTOBArray
ClusterTOBArray(const std::string &name, unsigned int reserve)
Definition: ClusterTOBArray.cxx:10
ClusterTOB.h
TCS::ClusterTOBArray::print
virtual void print(std::ostream &) const
Definition: ClusterTOBArray.cxx:16
TCS
Definition: Global/GlobalSimulation/src/IO/Decision.h:18
TCS::ClusterTOBArray::size
virtual unsigned int size() const
Definition: ClusterTOBArray.h:25