CMS 3D CMS Logo

/data/git/CMSSW_5_3_11_patch5/src/CondFormats/ESObjects/src/ESTimeSampleWeights.cc

Go to the documentation of this file.
00001 #include "CondFormats/ESObjects/interface/ESTimeSampleWeights.h"
00002 
00003 ESTimeSampleWeights::ESTimeSampleWeights() 
00004 {
00005   w0_ = 0.;
00006   w1_ = 0.;
00007   w2_ = 0.;
00008 }
00009 
00010 ESTimeSampleWeights::ESTimeSampleWeights(const float & w0, const float & w1, const float & w2) {
00011   w0_ = w0;
00012   w1_ = w1;
00013   w2_ = w2;
00014 }
00015 
00016 ESTimeSampleWeights::~ESTimeSampleWeights() {
00017 
00018 }