ATLAS Offline Software
Loading...
Searching...
No Matches
gTETOBArray.cxx
Go to the documentation of this file.
1// Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
4
5TCS::gTETOBArray::gTETOBArray(const std::string & name, unsigned int reserve) :
7 DataArrayImpl<gTETOB>(reserve)
8{}
9
10void
11TCS::gTETOBArray::print(std::ostream &o) const {
12 o << name() << std::endl;
13 for(const_iterator tob = begin(); tob != end(); ++tob)
14 o << **tob << std::endl;
15}
data_t::const_iterator const_iterator
DataArrayImpl(unsigned int reserve=0)
const std::string & name() const
Definition DataArray.h:20
InputTOBArray(const std::string &name)
gTETOBArray(const std::string &name, unsigned int reserve)
virtual void print(std::ostream &) const