1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef PIXELPOPCONDCSCABLINGSOURCEHANDLER_H
#define PIXELPOPCONDCSCABLINGSOURCEHANDLER_H
// Package: CondTools/SiPixel
// Class: PixelPopConDCSCablingSourceHandler
//
// Description: Source handler class for pixel dcs cabling map
// popcon application
//
// Created: M. Eads, Apr 2008
#include "CondTools/SiPixel/interface/PixelPopConSourceHandler.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
// class definition
// no object for dcs cabling map, yet, so just stick in a bool
class PixelPopConDCSCablingSourceHandler : public PixelPopConSourceHandler<bool> {
public:
PixelPopConDCSCablingSourceHandler(edm::ParameterSet const &) { ; }
private:
};
#endif
|