ThingSource

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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#ifndef Integration_ThingSource_h
#define Integration_ThingSource_h

/** \class ThingSource
 *
 * \version   1st Version Dec. 27, 2005  

 *
 ************************************************************/

#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "ThingAlgorithm.h"
#include "FWCore/Sources/interface/ProducerSourceBase.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"

namespace edmtest {
  class ThingSource : public edm::ProducerSourceBase {
  public:
    // The following is not yet used, but will be the primary
    // constructor when the parameter set system is available.
    //
    explicit ThingSource(edm::ParameterSet const& pset, edm::InputSourceDescription const& desc);

    ~ThingSource() override;

    bool setRunAndEventInfo(edm::EventID&, edm::TimeValue_t&, edm::EventAuxiliary::ExperimentType&) override {
      return true;
    }

    void produce(edm::Event& e) override;

    void beginRun(edm::Run& r) override;

    void beginLuminosityBlock(edm::LuminosityBlock& lb) override;

    static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);

  private:
    //called internally, not by the framework
    void endRun(edm::Run& r);
    void endLuminosityBlock(edm::LuminosityBlock& lb);

    ThingAlgorithm alg_;
  };
}  // namespace edmtest
#endif