ATLAS Offline Software
Loading...
Searching...
No Matches
gXETOBArray.h
Go to the documentation of this file.
1// Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3#ifndef L1TopoEvent_gXETOBArray
4#define L1TopoEvent_gXETOBArray
5
6#include <iostream>
10#include <vector>
11
12namespace TCS {
13
14 class gXETOBArray : public InputTOBArray, public DataArrayImpl<gXETOB> {
15 public:
16
17 // default constructor
18 gXETOBArray(const std::string & name, unsigned int reserve);
19
20 virtual unsigned int size() const { return DataArrayImpl<gXETOB>::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 void print(std::ostream &) const
gXETOBArray(const std::string &name, unsigned int reserve)
virtual unsigned int size() const
Definition gXETOBArray.h:20