ATLAS Offline Software
Loading...
Searching...
No Matches
eEmTOBArray.h
Go to the documentation of this file.
1// Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2
3#ifndef EEMTOBARRAY_H
4#define EEMTOBARRAY_H
5
6#include <iostream>
10#include <vector>
11
12namespace TCS {
13
14 class eEmTOBArray : public InputTOBArray, public DataArrayImpl<eEmTOB> {
15 public:
16
17 // default constructor
18 eEmTOBArray(const std::string & name, unsigned int reserve);
19
20 virtual unsigned int size() const { return DataArrayImpl<eEmTOB>::size(); }
21
22 private:
23 virtual void print(std::ostream&) const;
24 };
25
26}
27
28#endif
size_t size() const
DataArrayImpl(unsigned int reserve=0)
const std::string & name() const
Definition DataArray.h:20
InputTOBArray(const std::string &name)
virtual unsigned int size() const
Definition eEmTOBArray.h:20
eEmTOBArray(const std::string &name, unsigned int reserve)
virtual void print(std::ostream &) const