ATLAS Offline Software
Loading...
Searching...
No Matches
ClusterTOBArray.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4// ClusterTOBArray.h
5// TopoCore
6// Created by Joerg Stelzer on 11/17/12.
7
8#ifndef __TopoCore__ClusterTOBArray__
9#define __TopoCore__ClusterTOBArray__
10
11#include <iostream>
15#include <vector>
16
17namespace TCS {
18
19 class ClusterTOBArray : public InputTOBArray, public DataArrayImpl<ClusterTOB> {
20 public:
21
22 // default constructor
23 ClusterTOBArray(const std::string & name, unsigned int reserve);
24
25 virtual unsigned int size() const { return DataArrayImpl<ClusterTOB>::size(); }
26
27 private:
28 virtual void print(std::ostream&) const;
29 };
30
31}
32
33#endif
virtual unsigned int size() const
ClusterTOBArray(const std::string &name, unsigned int reserve)
virtual void print(std::ostream &) const
size_t size() const
DataArrayImpl(unsigned int reserve=0)
const std::string & name() const
Definition DataArray.h:20
InputTOBArray(const std::string &name)