CMS 3D CMS Logo

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

#include <HcalZSAlgoEnergy.h>

Inheritance diagram for HcalZSAlgoEnergy:
HcalZeroSuppressionAlgo

Public Member Functions

void done ()
 
 HcalZSAlgoEnergy (bool markAndPass, int level, int start, int samples, bool twosided)
 
void prepare (const HcalDbService *db)
 
- Public Member Functions inherited from HcalZeroSuppressionAlgo
void clearDbService ()
 
void setDbService (const HcalDbService *db)
 
void suppress (const HBHEDigiCollection &input, HBHEDigiCollection &output)
 
void suppress (const HODigiCollection &input, HODigiCollection &output)
 
void suppress (const HFDigiCollection &input, HFDigiCollection &output)
 

Protected Member Functions

virtual bool shouldKeep (const HBHEDataFrame &digi) const
 
virtual bool shouldKeep (const HODataFrame &digi) const
 
virtual bool shouldKeep (const HFDataFrame &digi) const
 
- Protected Member Functions inherited from HcalZeroSuppressionAlgo
 HcalZeroSuppressionAlgo (bool markAndPass)
 

Private Attributes

const HcalDbServicedb_
 
int firstsample_
 
int samplecount_
 
int threshold_
 
bool twosided_
 

Additional Inherited Members

- Protected Attributes inherited from HcalZeroSuppressionAlgo
const HcalDbServicem_dbService
 

Detailed Description

Simple amplitude-based zero suppression algorithm. For each digi, add up (samples) samples beginning with (start) sample. Subtract the average pedestal, and compare with digital threshold (in ADC counts). The algorithm can keep both positive and negative side fluctuations if "two sided" is enabled.

Date:
2009/10/31 00:02:39
Revision:
1.3
Author
J. Mans - Minnesota

Definition at line 18 of file HcalZSAlgoEnergy.h.

Constructor & Destructor Documentation

HcalZSAlgoEnergy::HcalZSAlgoEnergy ( bool  markAndPass,
int  level,
int  start,
int  samples,
bool  twosided 
)

Definition at line 7 of file HcalZSAlgoEnergy.cc.

Member Function Documentation

void HcalZSAlgoEnergy::done ( )

Definition at line 69 of file HcalZSAlgoEnergy.cc.

References db_.

69 { db_=0; }
const HcalDbService * db_
void HcalZSAlgoEnergy::prepare ( const HcalDbService db)

Definition at line 68 of file HcalZSAlgoEnergy.cc.

References EcalCondDB::db, and db_.

68 { db_=db; }
tuple db
Definition: EcalCondDB.py:151
const HcalDbService * db_
bool HcalZSAlgoEnergy::shouldKeep ( const HBHEDataFrame digi) const
protectedvirtual

Implements HcalZeroSuppressionAlgo.

Definition at line 58 of file HcalZSAlgoEnergy.cc.

References db_, firstsample_, samplecount_, threshold_, and twosided_.

58  {
59  return ZSEnergy_impl::keepMe<HBHEDataFrame>(*db_,digi,threshold_,firstsample_,samplecount_,twosided_);
60 }
const HcalDbService * db_
bool HcalZSAlgoEnergy::shouldKeep ( const HODataFrame digi) const
protectedvirtual

Implements HcalZeroSuppressionAlgo.

Definition at line 61 of file HcalZSAlgoEnergy.cc.

References db_, firstsample_, samplecount_, threshold_, and twosided_.

61  {
62  return ZSEnergy_impl::keepMe<HODataFrame>(*db_,digi,threshold_,firstsample_,samplecount_,twosided_);
63 }
const HcalDbService * db_
bool HcalZSAlgoEnergy::shouldKeep ( const HFDataFrame digi) const
protectedvirtual

Implements HcalZeroSuppressionAlgo.

Definition at line 64 of file HcalZSAlgoEnergy.cc.

References db_, firstsample_, samplecount_, threshold_, and twosided_.

64  {
65  return ZSEnergy_impl::keepMe<HFDataFrame>(*db_,digi,threshold_,firstsample_,samplecount_,twosided_);
66 }
const HcalDbService * db_

Member Data Documentation

const HcalDbService* HcalZSAlgoEnergy::db_
private

Definition at line 30 of file HcalZSAlgoEnergy.h.

Referenced by done(), prepare(), and shouldKeep().

int HcalZSAlgoEnergy::firstsample_
private

Definition at line 28 of file HcalZSAlgoEnergy.h.

Referenced by shouldKeep().

int HcalZSAlgoEnergy::samplecount_
private

Definition at line 28 of file HcalZSAlgoEnergy.h.

Referenced by shouldKeep().

int HcalZSAlgoEnergy::threshold_
private

Definition at line 28 of file HcalZSAlgoEnergy.h.

Referenced by shouldKeep().

bool HcalZSAlgoEnergy::twosided_
private

Definition at line 29 of file HcalZSAlgoEnergy.h.

Referenced by shouldKeep().