CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/DataFormats/EgammaReco/src/PreshowerClusterShape.cc

Go to the documentation of this file.
00001 //
00002 // author Aris Kyriakis (NCSR "Demokritos")
00003 //
00004 #include "DataFormats/EgammaReco/interface/PreshowerClusterShape.h"
00005 
00006 using namespace reco;
00007 
00008 PreshowerClusterShape::~PreshowerClusterShape() { }
00009 
00010 
00011 PreshowerClusterShape::PreshowerClusterShape(const std::vector<float> stripEnergies,
00012                                    const int plane)
00013 {
00014   stripEnergies_ = stripEnergies;
00015   plane_ = plane;
00016 }
00017 
00018 PreshowerClusterShape::PreshowerClusterShape(const PreshowerClusterShape &b) 
00019 {
00020   stripEnergies_ = b.stripEnergies_;
00021   plane_ = b.plane_;
00022   sc_ref_=b.sc_ref_;
00023 }