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
#ifndef EgammaReco_PreshowerClusterShapeShapeFwd_h
#define EgammaReco_PreshowerClusterShapeShapeFwd_h
//
// author Aris Kyriakis (NCSR "Demokritos")
//
#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 PreshowerClusterShape;

  /// collection of PreshowerClusterShape objects
  typedef std::vector<PreshowerClusterShape> PreshowerClusterShapeCollection;

  /// persistent reference to PreshowerClusterShape objects
  typedef edm::Ref<PreshowerClusterShapeCollection> PreshowerClusterShapeRef;

  /// reference to PreshowerClusterShape collection
  typedef edm::RefProd<PreshowerClusterShapeCollection> PreshowerClusterShapeRefProd;

  /// vector of references to PreshowerClusterShape objects all in the same collection
  typedef edm::RefVector<PreshowerClusterShapeCollection> PreshowerClusterShapeRefVector;

  /// iterator over a vector of references to PreshowerClusterShape objects
  typedef PreshowerClusterShapeRefVector::iterator PreshowerClusterShape_iterator;
}  // namespace reco

#endif