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 645 of file QTest.h.

Constructor & Destructor Documentation

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

Definition at line 648 of file QTest.h.

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

648  : SimpleTest(name)
649  {
650  Nbins = 0;
651  FailedBins[0] = nullptr;
652  FailedBins[1] = nullptr;
654  }
void setAlgoName(std::string name)
set algorithm name
Definition: QTest.h:80
SimpleTest(const std::string &name, bool keepBadChannels=false)
Definition: QTest.h:140
double * FailedBins[2]
Definition: QTest.h:683
static std::string getAlgoName()
Definition: QTest.h:665
FixedFlatOccupancy1d::~FixedFlatOccupancy1d ( )
inlineoverride

Definition at line 656 of file QTest.h.

References writelibraryfile_cfg::Nbins.

657  {
658  if( Nbins > 0 )
659  {
660  delete [] FailedBins[0];
661  delete [] FailedBins[1];
662  }
663  }
double * FailedBins[2]
Definition: QTest.h:683

Member Function Documentation

double FixedFlatOccupancy1d::get_FailedBins ( )
inline

Definition at line 673 of file QTest.h.

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

Definition at line 674 of file QTest.h.

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

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

Definition at line 665 of file QTest.h.

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

Reimplemented from QCriterion.

void FixedFlatOccupancy1d::set_epsilon_max ( double  epsilon)
inline

Definition at line 670 of file QTest.h.

References geometryDiff::epsilon.

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

Definition at line 669 of file QTest.h.

References geometryDiff::epsilon.

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

Definition at line 667 of file QTest.h.

References b, and hcalDigis_cfi::level.

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

Definition at line 671 of file QTest.h.

References S().

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

Definition at line 672 of file QTest.h.

References S().

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

Member Data Documentation

double FixedFlatOccupancy1d::b
protected

Definition at line 679 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_max
protected

Definition at line 681 of file QTest.h.

double FixedFlatOccupancy1d::epsilon_min
protected

Definition at line 681 of file QTest.h.

double* FixedFlatOccupancy1d::ExclusionMask
protected

Definition at line 680 of file QTest.h.

double* FixedFlatOccupancy1d::FailedBins[2]
protected

Definition at line 683 of file QTest.h.

int FixedFlatOccupancy1d::Nbins
protected

Definition at line 684 of file QTest.h.

int FixedFlatOccupancy1d::result
protected

Definition at line 685 of file QTest.h.

double FixedFlatOccupancy1d::S_fail
protected

Definition at line 682 of file QTest.h.

double FixedFlatOccupancy1d::S_pass
protected

Definition at line 682 of file QTest.h.