CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CompositeRefCandidate.cc
Go to the documentation of this file.
1 // $Id: CompositeRefCandidate.cc,v 1.9 2010/12/06 20:04:17 wmtan Exp $
4 
5 using namespace reco;
6 
8 }
9 
11  return new CompositeRefCandidate( * this );
12 }
13 
16 }
17 
20 }
21 
23  return iterator( new iterator_imp_specific );
24 }
25 
27  return iterator( new iterator_imp_specific );
28 }
29 
31  return ( i < numberOfDaughters() ) ? & * dau[ i ] : 0; // i >= 0, since i is unsigned
32 }
33 
35  return ( i < numberOfMothers() ) ? & * mom[ i ] : 0; // i >= 0, since i is unsigned
36 }
37 
39  return 0;
40 }
41 
43  return dau.size();
44 }
45 
47  return mom.size();
48 }
49 
50 bool CompositeRefCandidate::overlap( const Candidate & c2 ) const {
51  throw cms::Exception( "Error" ) << "can't check overlap internally for CompositeRefCanddate";
52 }
int i
Definition: DBlmapReader.cc:9
size_t size_type
Definition: Candidate.h:31
virtual const_iterator begin() const
first daughter const_iterator
candidate::const_iterator const_iterator
Definition: Candidate.h:32
virtual CompositeRefCandidate * clone() const
returns a clone of the candidate
const_iterator end() const
Termination of iteration.
Definition: RefVector.h:249
const_iterator begin() const
Initialize an iterator over the RefVector.
Definition: RefVector.h:244
daughters dau
collection of references to daughters
virtual const Candidate * mother(size_t i=0) const
return pointer to mother
daughters mom
collection of references to mothers
virtual size_t numberOfMothers() const
number of mothers (zero or one in most of but not all the cases)
candidate::iterator iterator
Definition: Candidate.h:33
virtual size_t numberOfDaughters() const
number of daughters
virtual const_iterator end() const
last daughter const_iterator
virtual bool overlap(const Candidate &) const
check overlap with another candidate
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
virtual const Candidate * daughter(size_type) const
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
virtual ~CompositeRefCandidate()
destructor
candidate::const_iterator_imp_specific< daughters > const_iterator_imp_specific
const iterator implementation
CompositeRefCandidate()
default constructor