Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:21

0001 #ifndef PIXELPOPCONDCSCABLINGSOURCEHANDLER_H
0002 #define PIXELPOPCONDCSCABLINGSOURCEHANDLER_H
0003 
0004 // Package: CondTools/SiPixel
0005 // Class:   PixelPopConDCSCablingSourceHandler
0006 //
0007 // Description: Source handler class for pixel dcs cabling map
0008 //              popcon application
0009 //
0010 // Created: M. Eads, Apr 2008
0011 
0012 #include "CondTools/SiPixel/interface/PixelPopConSourceHandler.h"
0013 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0014 
0015 // class definition
0016 // no object for dcs cabling map, yet, so just stick in a bool
0017 class PixelPopConDCSCablingSourceHandler : public PixelPopConSourceHandler<bool> {
0018 public:
0019   PixelPopConDCSCablingSourceHandler(edm::ParameterSet const &) { ; }
0020 
0021 private:
0022 };
0023 
0024 #endif