init_guid

Line Code
1 2 3 4 5 6 7 8 9
#include "CondFormats/HcalObjects/interface/HcalConstFunctor.h"

HcalConstFunctor::HcalConstFunctor() : value_(0.0) {}

HcalConstFunctor::HcalConstFunctor(const double d) : value_(d) {}

double HcalConstFunctor::operator()(double) const { return value_; }

BOOST_CLASS_EXPORT_IMPLEMENT(HcalConstFunctor)