CMS 3D CMS Logo

EcalWeight.cc

Go to the documentation of this file.
00001 
00007 #include "CondFormats/EcalObjects/interface/EcalWeight.h"
00008 
00009 EcalWeight::EcalWeight() {
00010   wgt_ = 0.0;
00011 }
00012 
00013 EcalWeight::EcalWeight(const double& awgt) {
00014   wgt_ = awgt;
00015 }
00016 
00017 EcalWeight::EcalWeight(const EcalWeight& awgt) {
00018   wgt_ = awgt.wgt_;
00019 }
00020 
00021 EcalWeight& EcalWeight::operator=(const EcalWeight&rhs) {
00022    wgt_ = rhs.wgt_;
00023    return *this;
00024 }

Generated on Tue Jun 9 17:26:27 2009 for CMSSW by  doxygen 1.5.4