Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#ifndef ParticleFlowCandidate_IsolatedPFCandidateFwd_h
#define ParticleFlowCandidate_IsolatedPFCandidateFwd_h
#include <vector>
#include "DataFormats/Common/interface/Ptr.h"
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefProd.h"
#include "DataFormats/Common/interface/RefVector.h"

namespace reco {
  class IsolatedPFCandidate;

  /// collection of IsolatedPFCandidates
  typedef std::vector<reco::IsolatedPFCandidate> IsolatedPFCandidateCollection;

  /// iterator
  typedef IsolatedPFCandidateCollection::const_iterator IsolatedPFCandidateConstIterator;

  /// iterator
  typedef IsolatedPFCandidateCollection::iterator IsolatedPFCandidateIterator;

  /// persistent reference to a IsolatedPFCandidate
  typedef edm::Ref<IsolatedPFCandidateCollection> IsolatedPFCandidateRef;

  /// persistent reference to a IsolatedPFCandidate
  typedef edm::Ptr<IsolatedPFCandidate> IsolatedPFCandidatePtr;

  /// persistent reference to a IsolatedPFCandidates collection
  typedef edm::RefProd<IsolatedPFCandidateCollection> IsolatedPFCandidateRefProd;

  /// vector of reference to GenParticleCandidate in the same collection
  typedef edm::RefVector<IsolatedPFCandidateCollection> IsolatedPFCandidateRefVector;

}  // namespace reco

#endif