1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
|
|
// $Id: ProducerStable.h,v 1.5 2009/07/15 20:38:24 loizides Exp $
|
3 |
|
|
//
|
4 |
|
|
// ProducerEvtSelData
|
5 |
|
|
//
|
6 |
|
|
// Produce event selection data.
|
7 |
|
|
//
|
8 |
|
|
// Authors: C.Loizides
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#ifndef MITEDM_PRODUCERS_PRODUCEREVTSELDATA_H
|
12 |
|
|
#define MITEDM_PRODUCERS_PRODUCEREVTSELDATA_H
|
13 |
|
|
|
14 |
|
|
#include "FWCore/Framework/interface/Frameworkfwd.h"
|
15 |
|
|
#include "FWCore/Framework/interface/EDProducer.h"
|
16 |
|
|
#include "FWCore/Framework/interface/Event.h"
|
17 |
|
|
#include "FWCore/Framework/interface/MakerMacros.h"
|
18 |
|
|
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
19 |
|
|
|
20 |
|
|
namespace mitedm
|
21 |
|
|
{
|
22 |
|
|
class ProducerEvtSelData : public edm::EDProducer {
|
23 |
|
|
public:
|
24 |
|
|
explicit ProducerEvtSelData(const edm::ParameterSet&);
|
25 |
|
|
~ProducerEvtSelData();
|
26 |
|
|
|
27 |
|
|
private:
|
28 |
|
|
void produce (edm::Event&, const edm::EventSetup&);
|
29 |
|
|
|
30 |
|
|
std::string srcHF_; //hf rec hits
|
31 |
|
|
std::string srcHBHE_; //hbhe rec hits
|
32 |
|
|
std::string srcCastor_; //castor rec hits
|
33 |
|
|
std::string srcZDC_; //zdc rec hits
|
34 |
|
|
};
|
35 |
|
|
}
|
36 |
|
|
#endif
|