00001 #include "RecoEcal/EgammaClusterAlgos/interface/ExampleClusterAlgo.h" 00002 00003 ExampleClusterAlgo::ExampleClusterAlgo() : 00004 energyCut_(0.), nXtalCut_(-1) { 00005 } 00006 00007 00008 ExampleClusterAlgo::ExampleClusterAlgo(double energyCut, int nXtalCut) { 00009 energyCut_ = energyCut; 00010 nXtalCut_ = nXtalCut; 00011 } 00012 00013 ExampleClusterAlgo::~ExampleClusterAlgo() { 00014 00015 } 00016 00017 00018 reco::BasicCluster 00019 ExampleClusterAlgo::makeOneCluster() { 00020 00021 return reco::BasicCluster(); 00022 00023 } 00024 00025 reco::BasicClusterCollection 00026 ExampleClusterAlgo::makeClusters(const EcalRecHitCollection& rechits) { 00027 00028 return reco::BasicClusterCollection(); 00029 00030 } 00031