CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
EcalWeight Class Reference

#include <EcalWeight.h>

Public Member Functions

 EcalWeight ()
 
 EcalWeight (const double &awgt)
 
 EcalWeight (const EcalWeight &awgt)
 
bool operator!= (const EcalWeight &rhs) const
 
double operator() () const
 
bool operator< (const EcalWeight &rhs) const
 
bool operator<= (const EcalWeight &rhs) const
 
EcalWeightoperator= (const EcalWeight &rhs)
 
bool operator== (const EcalWeight &rhs) const
 
bool operator> (const EcalWeight &rhs) const
 
bool operator>= (const EcalWeight &rhs) const
 
void setValue (const double &awgt)
 
double value () const
 

Private Attributes

double wgt_
 

Detailed Description

Author: Shahram Rahatlou, University of Rome & INFN This is workaround in order to be able to use vector<double> for ECAL weights. because of a conflict I need to define this trivial class so that I can use POOL to store vector<EcalWeight>

Definition at line 14 of file EcalWeight.h.

Constructor & Destructor Documentation

EcalWeight::EcalWeight ( )

Author: Shahram Rahatlou, University of Rome & INFN Created: 22 Feb 2006

Id:
EcalWeight.cc,v 1.2 2006/02/23 16:56:35 rahatlou Exp

Definition at line 9 of file EcalWeight.cc.

References wgt_.

9  {
10  wgt_ = 0.0;
11 }
double wgt_
Definition: EcalWeight.h:33
EcalWeight::EcalWeight ( const double &  awgt)

Definition at line 13 of file EcalWeight.cc.

References wgt_.

13  {
14  wgt_ = awgt;
15 }
double wgt_
Definition: EcalWeight.h:33
EcalWeight::EcalWeight ( const EcalWeight awgt)

Definition at line 17 of file EcalWeight.cc.

References wgt_.

17  {
18  wgt_ = awgt.wgt_;
19 }
double wgt_
Definition: EcalWeight.h:33

Member Function Documentation

bool EcalWeight::operator!= ( const EcalWeight rhs) const
inline

Definition at line 26 of file EcalWeight.h.

References wgt_.

26 { return (wgt_ != rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
double EcalWeight::operator() ( ) const
inline

Definition at line 22 of file EcalWeight.h.

References wgt_.

22 { return wgt_; }
double wgt_
Definition: EcalWeight.h:33
bool EcalWeight::operator< ( const EcalWeight rhs) const
inline

Definition at line 27 of file EcalWeight.h.

References wgt_.

27 { return (wgt_ < rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
bool EcalWeight::operator<= ( const EcalWeight rhs) const
inline

Definition at line 29 of file EcalWeight.h.

References wgt_.

29 { return (wgt_ <= rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
EcalWeight & EcalWeight::operator= ( const EcalWeight rhs)

Definition at line 21 of file EcalWeight.cc.

References wgt_.

21  {
22  wgt_ = rhs.wgt_;
23  return *this;
24 }
double wgt_
Definition: EcalWeight.h:33
bool EcalWeight::operator== ( const EcalWeight rhs) const
inline

Definition at line 25 of file EcalWeight.h.

References wgt_.

25 { return (wgt_ == rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
bool EcalWeight::operator> ( const EcalWeight rhs) const
inline

Definition at line 28 of file EcalWeight.h.

References wgt_.

28 { return (wgt_ > rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
bool EcalWeight::operator>= ( const EcalWeight rhs) const
inline

Definition at line 30 of file EcalWeight.h.

References wgt_.

30 { return (wgt_ >= rhs.wgt_); }
double wgt_
Definition: EcalWeight.h:33
void EcalWeight::setValue ( const double &  awgt)
inline
double EcalWeight::value ( ) const
inline

Member Data Documentation

double EcalWeight::wgt_
private