Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:15

0001 #include "CondFormats/HcalObjects/interface/HcalConstFunctor.h"
0002 
0003 HcalConstFunctor::HcalConstFunctor() : value_(0.0) {}
0004 
0005 HcalConstFunctor::HcalConstFunctor(const double d) : value_(d) {}
0006 
0007 double HcalConstFunctor::operator()(double) const { return value_; }
0008 
0009 BOOST_CLASS_EXPORT_IMPLEMENT(HcalConstFunctor)