Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:16

0001 //
0002 // This class provide a base class for the
0003 // pixel mask data for the pixel FEC configuration
0004 // This is a pure interface (abstract class) that
0005 // needs to have an implementation.
0006 //
0007 // All applications should just use this
0008 // interface and not care about the specific
0009 // implementation
0010 //
0011 //
0012 
0013 #include "CalibFormats/SiPixelObjects/interface/PixelMaskBase.h"
0014 
0015 using namespace pos;
0016 
0017 PixelMaskBase::PixelMaskBase(std::string description, std::string creator, std::string date)
0018     : PixelConfigBase(description, creator, date) {}
0019 
0020 PixelMaskBase::~PixelMaskBase() {}
0021 
0022 void PixelMaskBase::setOverride(PixelMaskOverrideBase* override) { maskOverride_ = override; }
0023 
0024 std::ostream& operator<<(std::ostream& s, const PixelMaskBase& mask) {
0025   s << mask.getMaskBits(0) << std::endl;
0026 
0027   return s;
0028 }