ATLAS Offline Software
Loading...
Searching...
No Matches
RpcDigitContainer.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5// MuonDigitContainer.cxx
6
9#include <map>
10#include <cassert>
11#include <iostream>
12
13using std::ostream;
14using std::endl;
15
16//**********************************************************************
17// Local definitions
18//**********************************************************************
19
20//**********************************************************************
21// Member functions.
22//**********************************************************************
23
24// Default constructor.
25
28{
29
30}
31
32//**********************************************************************
33
34// Destructor.
35
37
38//**********************************************************************
39
41{
43 // static const CLID CLID_RpcDigitContainer= 4192;
44 // return CLID_RpcDigitContainer ;
45}
46
47
48//**********************************************************************
49
50// Return the total number of digits in the container.
51
56
57 for (; it != iend; ++it ) {
58 count += (*it)->size();
59 }
60 return count;
61}
62
63
64//**********************************************************************
65// Free functions.
66//**********************************************************************
67
68// Output stream.
69
70ostream& operator<<(ostream& lhs, const RpcDigitContainer& rhs) {
71 lhs << "RpcDigitContainer has " << rhs.digit_size() << " digits:" << endl;
72 typedef SelectAllObject<RpcDigitContainer> SELECTOR;
73 SELECTOR sel(&rhs);
74 SELECTOR::const_iterator it = sel.begin();
75 SELECTOR::const_iterator it_end = sel.end();
76
77 bool first = true;
78 for ( ; it!=it_end;++it)
79 {
80 if ( first ) {
81 first = false;
82 } else {
83 lhs << endl;
84 }
85 lhs << " " << *it;
86 }
87 return lhs;
88}
89
90//**********************************************************************
uint32_t CLID
The Class ID type.
IdentifiableContainerMT< T > IdentifiableContainer
ostream & operator<<(ostream &lhs, const RpcDigitContainer &rhs)
SelectAllObjectMT< DCC, OBJECT > SelectAllObject
const_iterator end() const
return const_iterator for end of container
const_iterator begin() const
return const_iterator for first entry
Use IdentifiableContainer with RpcDigitCollection.
RpcDigitCollection::size_type size_type
RpcDigitContainer(unsigned int hash_max)
size_type digit_size() const
static const CLID & classID()
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:146