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
#ifndef EgammaReco_PreshowerClusterFwd_h
#define EgammaReco_PreshowerClusterFwd_h
//
//
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
#include "DataFormats/Common/interface/RefProd.h"
#include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h"

namespace reco {
  class PreshowerCluster;

  /// collection of PreshowerCluster objects
  typedef std::vector<PreshowerCluster> PreshowerClusterCollection;

  /// persistent reference to PreshowerCluster objects
  typedef edm::Ref<PreshowerClusterCollection> PreshowerClusterRef;

  /// reference to PreshowerCluster collection
  typedef edm::RefProd<PreshowerClusterCollection> PreshowerClusterRefProd;

  /// vector of references to PreshowerCluster objects all in the same collection
  typedef edm::RefVector<PreshowerClusterCollection> PreshowerClusterRefVector;

  /// iterator over a vector of references to PreshowerCluster objects
  typedef PreshowerClusterRefVector::iterator PreshowerCluster_iterator;
}  // namespace reco

#endif