#include "tmb_tree/TMBCalQual.hpp"
ClassImp(TMBCalQual)
TMBCalQual::TMBCalQual(): _emptyCrate(kFALSE), _coherentNoise(kFALSE),
_ringOfFire(kFALSE)
{
}
TMBCalQual::TMBCalQual(Bool_t emptyCrate, Bool_t coherentNoise, Bool_t ringOfFire){
Set(emptyCrate, coherentNoise, ringOfFire);
}
void TMBCalQual::Set(Bool_t emptyCrate, Bool_t coherentNoise, Bool_t ringOfFire){
_emptyCrate = emptyCrate;
_coherentNoise = coherentNoise;
_ringOfFire = ringOfFire;
}
Bool_t TMBCalQual::emptyCrate() const {return _emptyCrate;}
Bool_t TMBCalQual::coherentNoise() const {return _coherentNoise;}
Bool_t TMBCalQual::ringOfFire() const {return _ringOfFire;}
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.