59 if(m_columnLengths.size() != m_columnNames.size()) {
61 <<
"Length of PatternFileColumns does not match length of PatternFileLenghts, " <<
62 m_columnNames.size() <<
" vs " << m_columnLengths.size() << std::endl;
66 <<
"\nL1 GCT record: "
68 <<
"\nL1 GMT record: "
71 << m_gtTag << std::endl;
100 TResult (TRecord::*rawFunctionPtr)()
const,
102 uint32_t (*packingFunction)(uint32_t) =
NULL)
111 throw cms::Exception(__func__) <<
"Failed to extract record of type " <<
typeid(TRecord).
name() <<
112 " labeled " << label <<
", instance " <<
instance;
118 for(
typename std::vector<TRecord>::const_iterator it = handle->begin(); it != handle->end(); ++it) {
121 uint32_t
value = ((*it).*rawFunctionPtr)();
122 if(packingFunction !=
NULL) {
123 value = packingFunction(value);
126 line.
push(prefix, value);
133 static std::vector<uint32_t>
chopWords(
const std::vector<bool>& aWord) {
134 std::vector<uint32_t>
result;
136 result.resize((aWord.size()+31)/32, 0);
138 for(
unsigned i = 0 ;
i < aWord.size(); ++
i) {
139 result[
i/32] |= aWord[
i] << (
i%32);
150 std::vector<uint32_t> resultWords =
chopWords(input);
154 for(
unsigned i = resultWords.size() ;
i > 0; --
i) {
155 line.
push(prefix, resultWords[
i-1]);
163 uint32_t invertMask = 0x0000FF00;
164 uint32_t toKeep = rawData & (~invertMask);
165 return toKeep | (~rawData & invertMask);
178 throw cms::Exception(__func__) <<
"Failed to extract GT readout record labeled "
185 const std::vector<L1GtFdlWord>& fdlWords = handle->gtFdlVector();
186 for(std::vector<L1GtFdlWord>::const_iterator it = fdlWords.begin();
187 it != fdlWords.end() ; ++it) {
189 int bx = it->bxInEvent();
198 line.
push(
"gtFinalOr", it->finalOR());
208 for(L1GtPatternMap::LineMap::iterator it = allPatterns.
begin();
209 it != allPatterns.
end(); ++it) {
211 uint32_t counts = it->second.get(
"hfBitCounts1");
212 uint32_t sums = it->second.get(
"hfRingEtSums1");
216 uint32_t hfPsbValue = (counts & 0xFFF) |
224 it->second.push(resultName, hfPsbValue);
238 const unsigned int eventNumber = iEvent.
id().
event();
240 LogTrace(
"L1GtPatternGenerator") <<
"\n\nL1GtPatternGenerator::analyze: Run: " << runNumber <<
" LS: " << lsNumber <<
" Event: "
241 << eventNumber <<
"\n\n" << std::endl;
277 m_writer->writePatterns(allPatterns);
uint32_t raw() const
get the data
T getParameter(std::string const &) const
EventNumber_t event() const
L1GtPatternLine & getLine(int eventNr, int bxNr)
uint16_t raw() const
get the data
LineMap::const_iterator begin() const
edm::InputTag m_dtTag
input tags for regional muon data
virtual void endJob()
end of job
std::auto_ptr< L1GtPatternWriter > m_writer
uint16_t raw() const
get the raw data
static void extractRecordData(const edm::Event &iEvent, L1GtPatternMap &allPatterns, const std::string &label, const std::string &instance, TResult(TRecord::*rawFunctionPtr)() const, const std::string &prefix, uint32_t(*packingFunction)(uint32_t)=NULL)
unsigned int EventNumber_t
static PFTauRenderPlugin instance
std::vector< uint32_t > m_columnDefaults
edm::LuminosityBlockNumber_t luminosityBlock() const
unsigned phi() const
get the Et
std::vector< uint32_t > m_columnLengths
edm::InputTag m_gmtTag
input tag for GMT data
static std::string const input
void extractGlobalTriggerData(const edm::Event &iEvent, L1GtPatternMap &patterns)
unsigned getDataWord() const
get muon data word
std::string m_header
formatting instructions
std::string m_fileName
output file name
std::ofstream m_fileStream
unsigned getDataWord() const
return data word
LineMap::const_iterator end() const
edm::InputTag m_gctTag
input tag for GCT data
static void extractGlobalTriggerWord(const std::vector< bool > input, L1GtPatternLine &line, const std::string &prefix)
void packHfRecords(const std::string &resultName, L1GtPatternMap &allPatterns)
edm::InputTag m_gtTag
input tag for GT data
virtual void beginJob()
analyze
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
void push(const std::string &prefix, boost::uint32_t value)
unsigned et() const
get the magnitude
L1GtPatternGenerator(const edm::ParameterSet &)
uint16_t raw() const
get the data
uint16_t raw() const
get the raw data
virtual void analyze(const edm::Event &, const edm::EventSetup &)
analyze each event
uint16_t raw() const
the raw data
static uint32_t packRegionalMuons(uint32_t rawValue)
static std::vector< uint32_t > chopWords(const std::vector< bool > &aWord)
uint16_t raw() const
get the raw data
std::vector< std::string > m_columnNames