CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch12/src/CondFormats/ESObjects/src/ESWeight.cc

Go to the documentation of this file.
00001 #include "CondFormats/ESObjects/interface/ESWeight.h"
00002 
00003 ESWeight::ESWeight() {
00004   wgt_ = 0.0;
00005 }
00006 
00007 ESWeight::ESWeight(const double& awgt) {
00008   wgt_ = awgt;
00009 }
00010 
00011 ESWeight::ESWeight(const ESWeight& awgt) {
00012   wgt_ = awgt.wgt_;
00013 }
00014 
00015 ESWeight& ESWeight::operator=(const ESWeight&rhs) {
00016    wgt_ = rhs.wgt_;
00017    return *this;
00018 }