Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /**
0002  * Author: Shahram Rahatlou, University of Rome & INFN
0003  * Created: 22 Feb 2006
0004  * $Id: EcalADCToGeVConstant.cc,v 1.2 2006/02/23 16:56:35 rahatlou Exp $
0005  **/
0006 
0007 #include "CondFormats/EcalObjects/interface/EcalADCToGeVConstant.h"
0008 
0009 EcalADCToGeVConstant::EcalADCToGeVConstant() {
0010   EBvalue_ = 0.;
0011   EEvalue_ = 0.;
0012 }
0013 
0014 EcalADCToGeVConstant::EcalADCToGeVConstant(const float& EBvalue, const float& EEvalue) {
0015   EBvalue_ = EBvalue;
0016   EEvalue_ = EEvalue;
0017 }
0018 
0019 EcalADCToGeVConstant::~EcalADCToGeVConstant() {}