CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
L1GtVhdlWriter Class Reference

#include <L1GtVhdlWriter.h>

Inheritance diagram for L1GtVhdlWriter:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 L1GtVhdlWriter (const edm::ParameterSet &)
 constructor More...
 
 ~L1GtVhdlWriter () override
 destructor More...
 
- 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 const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
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
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
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)
 

Private Attributes

std::string outputDir_
 output directory More...
 
std::string vhdlDir_
 templates directory More...
 

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 ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, 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)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: write VHDL templates for the L1 GT.

Implementation: <TODO: enter implementation details>

Author
: Philipp Wagner

Definition at line 38 of file L1GtVhdlWriter.h.

Constructor & Destructor Documentation

L1GtVhdlWriter::L1GtVhdlWriter ( const edm::ParameterSet parSet)
explicit

constructor

Definition at line 42 of file L1GtVhdlWriter.cc.

References edm::ParameterSet::getParameter(), outputDir_, AlCaHLTBitMon_QueryRunRegistry::string, and vhdlDir_.

42  {
43  // directory in /data for the VHDL templates
44  vhdlDir_ = parSet.getParameter<std::string>("VhdlTemplatesDir");
45  outputDir_ = parSet.getParameter<std::string>("OutputDir");
46 
47  if (vhdlDir_[vhdlDir_.length() - 1] != '/')
48  vhdlDir_ += "/";
49  if (outputDir_[outputDir_.length() - 1] != '/')
50  outputDir_ += "/";
51 
52  // // def.xml file
53  // std::string defXmlFileName = parSet.getParameter<std::string>("DefXmlFile");
54  //
55  // edm::FileInPath f1("L1TriggerConfig/L1GtConfigProducers/data/" +
56  // vhdlDir + "/" + defXmlFileName);
57  //
58  // m_defXmlFile = f1.fullPath();
59 
60  edm::LogInfo("L1GtConfigProducers") << "\n\nL1 GT VHDL directory: " << vhdlDir_ << "\n\n" << std::endl;
61 }
T getParameter(std::string const &) const
std::string outputDir_
output directory
std::string vhdlDir_
templates directory
L1GtVhdlWriter::~L1GtVhdlWriter ( )
override

destructor

Definition at line 64 of file L1GtVhdlWriter.cc.

64  {
65  // empty
66 }

Member Function Documentation

void L1GtVhdlWriter::analyze ( const edm::Event iEvent,
const edm::EventSetup evSetup 
)
override

Definition at line 69 of file L1GtVhdlWriter.cc.

References L1GtVhdlWriterCore::buildCommonHeader(), gather_cfg::cout, edm::EventSetup::get(), L1GtVhdlWriterCore::getCond2IntMap(), L1GtTriggerMenu::gtAlgorithmMap(), L1GtTriggerMenu::gtConditionMap(), L1GtVhdlWriterCore::makeFirmware(), eostools::mkdir(), outputDir_, L1GtTriggerMenu::print(), L1GtVhdlWriterCore::retrunCommonHeader(), AlCaHLTBitMon_QueryRunRegistry::string, vhdlDir_, and L1GtVmeWriterCore::writeVME().

69  {
71  evSetup.get<L1GtTriggerMenuRcd>().get(l1GtMenu);
72 
73  std::vector<ConditionMap> conditionMap = l1GtMenu->gtConditionMap();
74  AlgorithmMap algorithmMap = l1GtMenu->gtAlgorithmMap();
75 
76  // print with various level of verbosities
77  int printVerbosity = 0;
78  l1GtMenu->print(std::cout, printVerbosity);
79 
80  //---------------------Here the VHDL files will be created---------------------------------------
81 
82  // information that will be delivered by the parser in future
83  std::map<std::string, std::string> headerParameters;
84  std::vector<std::string> channelVector;
85 
86  headerParameters["vhdl_path"] = "/vhdllibrarypath";
87  headerParameters["designer_date"] = "20.05.1986";
88  headerParameters["designer_name"] = "Philipp Wagner";
89  headerParameters["version"] = "2.0";
90  headerParameters["designer_comments"] = "produced in CMSSW";
91  headerParameters["gtl_setup_name"] = "L1Menu2007NovGR";
92 
93  channelVector.push_back("-- ca1: ieg");
94  channelVector.push_back("-- ca2: eg");
95  channelVector.push_back("-- ca3: jet");
96  channelVector.push_back("-- ca4: fwdjet");
97  channelVector.push_back("-- ca5: tau");
98  channelVector.push_back("-- ca6: esums");
99  channelVector.push_back("-- ca7: jet_cnts");
100  channelVector.push_back("-- ca8: free");
101  channelVector.push_back("-- ca9: free");
102  channelVector.push_back("-- ca10: free");
103 
104  // check, weather output directory exists and create it on the fly if not
105  if (boost::filesystem::is_directory(outputDir_)) {
106  std::cout << std::endl << "Ok - Output directory exists!" << std::endl;
107  } else {
108  if (!mkdir(outputDir_.c_str(), 0666))
109  std::cout << std::endl << "Directory: " << outputDir_ << " has been created!" << std::endl;
110  else
111  std::cout << std::endl << "Error while creating directory: " << outputDir_ << " !" << std::endl;
112  }
113 
114  // prepare a core with common header
115  L1GtVhdlWriterCore vhdlWriter(vhdlDir_, outputDir_, true);
116  vhdlWriter.buildCommonHeader(headerParameters, channelVector);
117  // write the firmware
118  if (vhdlWriter.makeFirmware(conditionMap, algorithmMap)) {
119  std::cout << std::endl
120  << std::endl
121  << "*********************** I'm ready ;-) **************************" << std::endl
122  << std::endl
123  << "You can find the firmware in dircetory: " << outputDir_ << std::endl
124  << std::endl
125  << "******************************************************************" << std::endl;
126  }
127 
128  // Create the VME - XML
129  std::string vmeFile = "vme.xml";
130 
131  L1GtVmeWriterCore vmeWriter(outputDir_, vmeFile);
132  vmeWriter.writeVME(conditionMap, vhdlWriter.getCond2IntMap(), vhdlWriter.retrunCommonHeader());
133 }
std::map< std::string, L1GtAlgorithm > AlgorithmMap
map containing the algorithms
const std::vector< ConditionMap > & gtConditionMap() const
get / set / build the condition maps
std::string outputDir_
output directory
std::string vhdlDir_
templates directory
void print(std::ostream &, int &) const
def mkdir(path)
Definition: eostools.py:251
T get() const
Definition: EventSetup.h:73
const AlgorithmMap & gtAlgorithmMap() const
get / set the algorithm map (by name)

Member Data Documentation

std::string L1GtVhdlWriter::outputDir_
private
std::string L1GtVhdlWriter::vhdlDir_
private

templates directory

Definition at line 50 of file L1GtVhdlWriter.h.

Referenced by analyze(), and L1GtVhdlWriter().