CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RHStopDump.h
Go to the documentation of this file.
1 #ifndef RHSTOPDUMP_H
2 #define RHSTOPDUMP_H 1
3 //
4 // Dump stopping points from the Event into ASCII file
5 // F.Ratnikov, Apr. 8, 2010
6 // $Id: RHStopDump.h,v 1.1 2010/04/09 11:38:36 fedor Exp $
7 //
8 
9 #include <fstream>
10 
12 
13 class RHStopDump : public edm::EDAnalyzer {
14  public:
15  explicit RHStopDump(const edm::ParameterSet&);
16  virtual ~RHStopDump() {};
17  virtual void analyze(const edm::Event&, const edm::EventSetup&);
18  private:
19  std::ofstream mStream;
21 };
22 
23 #endif
std::ofstream mStream
Definition: RHStopDump.h:19
RHStopDump(const edm::ParameterSet &)
Definition: RHStopDump.cc:7
virtual void analyze(const edm::Event &, const edm::EventSetup &)
Definition: RHStopDump.cc:12
std::string mProducer
Definition: RHStopDump.h:20
virtual ~RHStopDump()
Definition: RHStopDump.h:16