CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Protected Attributes
FixedFlatOccupancy1d Class Reference

#include <QTest.h>

Inheritance diagram for FixedFlatOccupancy1d:
SimpleTest QCriterion

Public Member Functions

 FixedFlatOccupancy1d (const std::string &name)
 
double get_FailedBins (void)
 
int get_result ()
 
float runTest (const MonitorElement *me)
 
void set_epsilon_max (double epsilon)
 
void set_epsilon_min (double epsilon)
 
void set_ExclusionMask (double *mask)
 
void set_Occupancy (double level)
 
void set_S_fail (double S)
 
void set_S_pass (double S)
 
 ~FixedFlatOccupancy1d (void)
 
- Public Member Functions inherited from SimpleTest
virtual std::vector< DQMChannelgetBadChannels (void) const
 get vector of channels that failed test (not always relevant!) More...
 
void setMinimumEntries (unsigned n)
 set minimum # of entries needed More...
 
 SimpleTest (const std::string &name, bool keepBadChannels=false)
 
- Public Member Functions inherited from QCriterion
std::string algoName (void) const
 get algorithm name More...
 
std::string getMessage (void) const
 get message attached to test More...
 
std::string getName (void) const
 get name of quality test More...
 
int getStatus (void) const
 (class should be created by DQMStore class) More...
 
void setErrorProb (float prob)
 
void setWarningProb (float prob)
 set probability limit for warning and error (default: 90% and 50%) More...
 

Static Public Member Functions

static std::string getAlgoName (void)
 

Protected Attributes

double b
 
double epsilon_max
 
double epsilon_min
 
double * ExclusionMask
 
double * FailedBins [2]
 
int Nbins
 
int result
 
double S_fail
 
double S_pass
 
- Protected Attributes inherited from SimpleTest
std::vector< DQMChannelbadChannels_
 
bool keepBadChannels_
 
unsigned minEntries_
 
- Protected Attributes inherited from QCriterion
std::string algoName_
 name of quality test More...
 
float errorProb_
 
std::string message_
 quality test status More...
 
float prob_
 name of algorithm More...
 
std::string qtname_
 
int status_
 
int verbose_
 
float warningProb_
 message attached to test More...
 

Additional Inherited Members

- Protected Member Functions inherited from SimpleTest
virtual void setMessage (void)
 set status & message after test has run More...
 
- Protected Member Functions inherited from QCriterion
void init (void)
 initialize values More...
 
 QCriterion (std::string qtname)
 
float runTest (const MonitorElement *me, QReport &qr, DQMNet::QValue &qv)
 
void setAlgoName (std::string name)
 set algorithm name More...
 
void setVerbose (int verbose)
 probability limits for warnings, errors More...
 
virtual ~QCriterion (void)
 

Detailed Description

Definition at line 551 of file QTest.h.

Constructor & Destructor Documentation

FixedFlatOccupancy1d::FixedFlatOccupancy1d ( const std::string &  name)
inline

Definition at line 554 of file QTest.h.

References writelibraryfile_cfg::Nbins, and QCriterion::setAlgoName().

554  : SimpleTest(name)
555  {
556  Nbins = 0;
557  FailedBins[0] = 0;
558  FailedBins[1] = 0;
560  }
void setAlgoName(std::string name)
set algorithm name
Definition: QTest.h:78
SimpleTest(const std::string &name, bool keepBadChannels=false)
Definition: QTest.h:138
double * FailedBins[2]
Definition: QTest.h:589
static std::string getAlgoName(void)
Definition: QTest.h:571
FixedFlatOccupancy1d::~FixedFlatOccupancy1d ( void  )
inline

Definition at line 562 of file QTest.h.

References writelibraryfile_cfg::Nbins.

563  {
564  if( Nbins > 0 )
565  {
566  delete [] FailedBins[0];
567  delete [] FailedBins[1];
568  }
569  }
double * FailedBins[2]
Definition: QTest.h:589

Member Function Documentation

double FixedFlatOccupancy1d::get_FailedBins ( void  )
inline

Definition at line 579 of file QTest.h.

579 { return *FailedBins[1]; } // FIXME: WRONG! OFF BY ONE!?
double * FailedBins[2]
Definition: QTest.h:589
int FixedFlatOccupancy1d::get_result ( )
inline

Definition at line 580 of file QTest.h.

References mps_fire::result, and QCriterion::runTest().

580 { return result; }
static std::string FixedFlatOccupancy1d::getAlgoName ( void  )
inlinestatic

Definition at line 571 of file QTest.h.

571 { return "RuleFixedFlatOccupancy1d"; }
float FixedFlatOccupancy1d::runTest ( const MonitorElement me)
virtual

Reimplemented from QCriterion.

void FixedFlatOccupancy1d::set_epsilon_max ( double  epsilon)
inline

Definition at line 576 of file QTest.h.

References geometryDiff::epsilon.

576 { epsilon_max = epsilon; }
double epsilon_max
Definition: QTest.h:587
void FixedFlatOccupancy1d::set_epsilon_min ( double  epsilon)
inline

Definition at line 575 of file QTest.h.

References geometryDiff::epsilon.

575 { epsilon_min = epsilon; }
double epsilon_min
Definition: QTest.h:587
void FixedFlatOccupancy1d::set_ExclusionMask ( double *  mask)
inline
void FixedFlatOccupancy1d::set_Occupancy ( double  level)
inline

Definition at line 573 of file QTest.h.

References b, and hcalDigis_cfi::level.

573 { b = level; }
void FixedFlatOccupancy1d::set_S_fail ( double  S)
inline

Definition at line 577 of file QTest.h.

References S().

577 { S_fail = S; }
double S(const TLorentzVector &, const TLorentzVector &)
Definition: Particle.cc:99
void FixedFlatOccupancy1d::set_S_pass ( double  S)
inline

Definition at line 578 of file QTest.h.

References S().

578 { S_pass = S; }
double S(const TLorentzVector &, const TLorentzVector &)
Definition: Particle.cc:99

Member Data Documentation

double FixedFlatOccupancy1d::b
protected

Definition at line 585 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_max
protected

Definition at line 587 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_min
protected

Definition at line 587 of file QTest.h.

double* FixedFlatOccupancy1d::ExclusionMask
protected

Definition at line 586 of file QTest.h.

double* FixedFlatOccupancy1d::FailedBins[2]
protected

Definition at line 589 of file QTest.h.

int FixedFlatOccupancy1d::Nbins
protected

Definition at line 590 of file QTest.h.

int FixedFlatOccupancy1d::result
protected

Definition at line 591 of file QTest.h.

double FixedFlatOccupancy1d::S_fail
protected

Definition at line 588 of file QTest.h.

double FixedFlatOccupancy1d::S_pass
protected

Definition at line 588 of file QTest.h.