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