Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:07

0001 //
0002 // author Aris Kyriakis (NCSR "Demokritos")
0003 //
0004 #include "DataFormats/EgammaReco/interface/PreshowerClusterShape.h"
0005 
0006 using namespace reco;
0007 
0008 PreshowerClusterShape::~PreshowerClusterShape() {}
0009 
0010 PreshowerClusterShape::PreshowerClusterShape(const std::vector<float>& stripEnergies, const int plane) {
0011   stripEnergies_ = stripEnergies;
0012   plane_ = plane;
0013 }
0014 
0015 PreshowerClusterShape::PreshowerClusterShape(const PreshowerClusterShape& b) {
0016   stripEnergies_ = b.stripEnergies_;
0017   plane_ = b.plane_;
0018   sc_ref_ = b.sc_ref_;
0019 }