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 ()
 
int get_result ()
 
float runTest (const MonitorElement *me) override
 
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 () override
 
- Public Member Functions inherited from SimpleTest
std::vector< DQMChannelgetBadChannels () const override
 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 () const
 get algorithm name More...
 
std::string getMessage () const
 get message attached to test More...
 
std::string getName () const
 get name of quality test More...
 
int getStatus () 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 ()
 

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
void setMessage () override
 set status & message after test has run More...
 
- Protected Member Functions inherited from QCriterion
void init ()
 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 ()=default
 

Detailed Description

Definition at line 552 of file QTest.h.

Constructor & Destructor Documentation

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

Definition at line 555 of file QTest.h.

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

555  : SimpleTest(name)
556  {
557  Nbins = 0;
558  FailedBins[0] = nullptr;
559  FailedBins[1] = nullptr;
561  }
void setAlgoName(std::string name)
set algorithm name
Definition: QTest.h:79
SimpleTest(const std::string &name, bool keepBadChannels=false)
Definition: QTest.h:139
double * FailedBins[2]
Definition: QTest.h:590
static std::string getAlgoName()
Definition: QTest.h:572
FixedFlatOccupancy1d::~FixedFlatOccupancy1d ( )
inlineoverride

Definition at line 563 of file QTest.h.

References writelibraryfile_cfg::Nbins.

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

Member Function Documentation

double FixedFlatOccupancy1d::get_FailedBins ( )
inline

Definition at line 580 of file QTest.h.

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

Definition at line 581 of file QTest.h.

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

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

Definition at line 572 of file QTest.h.

572 { return "RuleFixedFlatOccupancy1d"; }
float FixedFlatOccupancy1d::runTest ( const MonitorElement me)
overridevirtual

Reimplemented from QCriterion.

void FixedFlatOccupancy1d::set_epsilon_max ( double  epsilon)
inline

Definition at line 577 of file QTest.h.

References geometryDiff::epsilon.

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

Definition at line 576 of file QTest.h.

References geometryDiff::epsilon.

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

Definition at line 574 of file QTest.h.

References b, and hcalDigis_cfi::level.

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

Definition at line 578 of file QTest.h.

References S().

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

Definition at line 579 of file QTest.h.

References S().

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

Member Data Documentation

double FixedFlatOccupancy1d::b
protected

Definition at line 586 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_max
protected

Definition at line 588 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_min
protected

Definition at line 588 of file QTest.h.

double* FixedFlatOccupancy1d::ExclusionMask
protected

Definition at line 587 of file QTest.h.

double* FixedFlatOccupancy1d::FailedBins[2]
protected

Definition at line 590 of file QTest.h.

int FixedFlatOccupancy1d::Nbins
protected

Definition at line 591 of file QTest.h.

int FixedFlatOccupancy1d::result
protected

Definition at line 592 of file QTest.h.

double FixedFlatOccupancy1d::S_fail
protected

Definition at line 589 of file QTest.h.

double FixedFlatOccupancy1d::S_pass
protected

Definition at line 589 of file QTest.h.