ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/interface/Collection.h
Revision: 1.7
Committed: Mon Mar 2 12:34:00 2009 UTC (16 years, 2 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_011, Mit_010a, Mit_010, Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008, Mit_008pre2, Mit_008pre1
Changes since 1.6: +2 -3 lines
Log Message:
Documentation, cleanup and object id removal.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: Collection.h,v 1.6 2008/12/10 11:26:52 loizides Exp $
3 //
4 // Collection
5 //
6 // Unification of read access to a collection of objects (ArrayElements).
7 //
8 // Authors: C.Loizides
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITANA_DATACONT_COLLECTION_H
12 #define MITANA_DATACONT_COLLECTION_H
13
14 #include "MitAna/DataCont/interface/BaseCollection.h"
15
16 namespace mithep
17 {
18 template<class ArrayElement>
19 class Collection : public BaseCollection
20 {
21 public:
22 Collection() {}
23
24 virtual ArrayElement *At(UInt_t idx) = 0;
25 virtual const ArrayElement *At(UInt_t idx) const = 0;
26 virtual UInt_t GetEntries() const = 0;
27 virtual UInt_t GetSize() const = 0;
28 virtual Bool_t HasObject(const ArrayElement *obj) const = 0;
29 virtual Bool_t IsOwner() const = 0;
30 void Print(Option_t *opt="") const;
31 virtual void Reset() = 0;
32 virtual void Trim() = 0;
33 virtual ArrayElement *UncheckedAt(UInt_t idx) = 0;
34 virtual const ArrayElement *UncheckedAt(UInt_t idx) const = 0;
35 virtual ArrayElement *operator[](UInt_t idx) = 0;
36 virtual const ArrayElement *operator[](UInt_t idx) const = 0;
37
38 ClassDef(Collection, 1) // Generic access to a collection of ArrayElements
39 };
40 }
41
42 //--------------------------------------------------------------------------------------------------
43 template<class ArrayElement>
44 void mithep::Collection<ArrayElement>::Print(Option_t */*opt*/) const
45 {
46 // Print information about this collection.
47
48 printf("%s: Contains %d (out of %d) objs\n",
49 GetName(), GetEntries(), GetSize());
50 }
51 #endif