ATLAS Offline Software
Loading...
Searching...
No Matches
cTauTOBArray.cxx
Go to the documentation of this file.
1// Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2
6
7TCS::cTauTOBArray::cTauTOBArray(const std::string & name, unsigned int reserve) :
9 DataArrayImpl<cTauTOB>(reserve)
10{}
11
12void
13TCS::cTauTOBArray::print(std::ostream &o) const {
14 o << name() << std::endl;
15 for(const_iterator tob = begin(); tob != end(); ++tob)
16 o << **tob << std::endl;
17}
18
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)
cTauTOBArray(const std::string &name, unsigned int reserve)
virtual void print(std::ostream &) const