Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef CalibMuon_DTT0CorrectionFactory_H
#define CalibMuon_DTT0CorrectionFactory_H

/** \class DTT0CorrectionFactory
 *  Factory of seal plugins for TTrig DB corrections.
 *  The plugins are concrete implementations of DTT0BaseCorrection case class.
 *
 */
#include "FWCore/PluginManager/interface/PluginFactory.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"

namespace edm {
  class ParameterSet;
  class ConsumesCollector;
}  // namespace edm
namespace dtCalibration {
  class DTT0BaseCorrection;
}

typedef edmplugin::PluginFactory<dtCalibration::DTT0BaseCorrection *(const edm::ParameterSet &, edm::ConsumesCollector)>
    DTT0CorrectionFactory;
#endif