CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes
LHEWriter Class Reference
Inheritance diagram for LHEWriter:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 LHEWriter (const edm::ParameterSet &params)
 
 ~LHEWriter () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Protected Member Functions

void analyze (const edm::Event &event, const edm::EventSetup &es) override
 
void beginRun (const edm::Run &run, const edm::EventSetup &es) override
 
void endRun (const edm::Run &run, const edm::EventSetup &es) override
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Private Attributes

std::ofstream file
 
std::ofstream file1
 
edm::EDGetTokenT< LHEEventProducttokenLHEEvent_
 
edm::EDGetTokenT< LHERunInfoProducttokenLHERunInfo_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 

Detailed Description

Definition at line 21 of file LHEWriter.cc.

Constructor & Destructor Documentation

◆ LHEWriter()

LHEWriter::LHEWriter ( const edm::ParameterSet params)
explicit

Definition at line 39 of file LHEWriter.cc.

40  : tokenLHERunInfo_(consumes<LHERunInfoProduct, edm::InRun>(
41  params.getUntrackedParameter<edm::InputTag>("moduleLabel", std::string("source")))),
42  tokenLHEEvent_(consumes<LHEEventProduct>(
43  params.getUntrackedParameter<edm::InputTag>("moduleLabel", std::string("source")))) {}

◆ ~LHEWriter()

LHEWriter::~LHEWriter ( )
override

Definition at line 45 of file LHEWriter.cc.

45 {}

Member Function Documentation

◆ analyze()

void LHEWriter::analyze ( const edm::Event event,
const edm::EventSetup es 
)
overrideprotectedvirtual

Implements edm::EDAnalyzer.

Definition at line 67 of file LHEWriter.cc.

67  {
69  //event.getByLabel("source", product);
70  event.getByToken(tokenLHEEvent_, product);
71 
72  std::copy(product->begin(), product->end(), std::ostream_iterator<std::string>(file1));
73 }

References LHEEventProduct::begin(), filterCSVwithJSON::copy, LHEEventProduct::end(), file1, and tokenLHEEvent_.

◆ beginRun()

void LHEWriter::beginRun ( const edm::Run run,
const edm::EventSetup es 
)
overrideprotectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 47 of file LHEWriter.cc.

47  {
48  file.open("writer.lhe", std::fstream::out | std::fstream::trunc);
49  file1.open("writer1.lhe", std::fstream::out | std::fstream::trunc);
50 }

References file, file1, MillePedeFileConverter_cfg::out, and pileupReCalc_HLTpaths::trunc.

◆ endRun()

void LHEWriter::endRun ( const edm::Run run,
const edm::EventSetup es 
)
overrideprotectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 52 of file LHEWriter.cc.

52  {
54  //run.getByLabel("source", product);
55  run.getByToken(tokenLHERunInfo_, product);
56 
57  std::copy(product->begin(), product->end(), std::ostream_iterator<std::string>(file));
58 
60  file.close();
61  file1.close();
62 
63  system("cat writer1.lhe >> writer.lhe");
64  system("rm -rf writer1.lhe");
65 }

References LHERunInfoProduct::begin(), filterCSVwithJSON::copy, LHERunInfoProduct::end(), LHERunInfoProduct::endOfFile(), file, file1, writedatasetfile::run, and tokenLHERunInfo_.

Member Data Documentation

◆ file

std::ofstream LHEWriter::file
private

◆ file1

std::ofstream LHEWriter::file1
private

Definition at line 33 of file LHEWriter.cc.

Referenced by analyze(), beginRun(), and endRun().

◆ tokenLHEEvent_

edm::EDGetTokenT<LHEEventProduct> LHEWriter::tokenLHEEvent_
private

Definition at line 36 of file LHEWriter.cc.

Referenced by analyze().

◆ tokenLHERunInfo_

edm::EDGetTokenT<LHERunInfoProduct> LHEWriter::tokenLHERunInfo_
private

Definition at line 35 of file LHEWriter.cc.

Referenced by endRun().

filterCSVwithJSON.copy
copy
Definition: filterCSVwithJSON.py:36
CalibrationSummaryClient_cfi.params
params
Definition: CalibrationSummaryClient_cfi.py:14
LHEWriter::tokenLHEEvent_
edm::EDGetTokenT< LHEEventProduct > tokenLHEEvent_
Definition: LHEWriter.cc:36
edm::Handle
Definition: AssociativeIterator.h:50
LHEEventProduct::end
const_iterator end() const
Definition: LHEEventProduct.h:100
LHERunInfoProduct::end
const_iterator end() const
Definition: LHERunInfoProduct.h:109
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
LHERunInfoProduct::begin
const_iterator begin() const
Definition: LHERunInfoProduct.cc:115
writedatasetfile.run
run
Definition: writedatasetfile.py:27
LHEWriter::tokenLHERunInfo_
edm::EDGetTokenT< LHERunInfoProduct > tokenLHERunInfo_
Definition: LHEWriter.cc:35
LHEWriter::file
std::ofstream file
Definition: LHEWriter.cc:32
LHEWriter::file1
std::ofstream file1
Definition: LHEWriter.cc:33
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
LHEEventProduct::begin
const_iterator begin() const
Definition: LHEEventProduct.cc:64
pileupReCalc_HLTpaths.trunc
trunc
Definition: pileupReCalc_HLTpaths.py:144
edm::InputTag
Definition: InputTag.h:15
LHERunInfoProduct::endOfFile
static const std::string & endOfFile()
Definition: LHERunInfoProduct.cc:138