src
DataFormats
L1GlobalMuonTrigger
src
L1MuGMTReadoutCollection.cc
Go to the documentation of this file.
1
// -*- C++ -*-
2
//
3
// Package: DataFormats/L1GlobalMuonTrigger
4
// Class : L1MuGMTReadoutCollection
5
//
6
// Implementation:
7
// [Notes on implementation]
8
//
9
// Original Author: Christopher Jones
10
// Created: Mon, 04 Nov 2013 17:08:29 GMT
11
//
12
13
// system include files
14
#include "oneapi/tbb/concurrent_unordered_map.h"
15
16
// user include files
17
#include "
DataFormats/L1GlobalMuonTrigger/interface/L1MuGMTReadoutCollection.h
"
18
19
static
tbb::concurrent_unordered_map<int, L1MuGMTReadoutRecord>
s_empty_record_cache
;
20
21
L1MuGMTReadoutRecord
const
&
L1MuGMTReadoutCollection::getDefaultFor
(
int
bx
) {
22
// if bx not found return empty readout record
23
auto
itFound =
s_empty_record_cache
.find(
bx
);
24
if
(itFound ==
s_empty_record_cache
.end()) {
25
auto
foundPair =
s_empty_record_cache
.insert(std::make_pair(
bx
,
L1MuGMTReadoutRecord
(
bx
)));
26
itFound = foundPair.first;
27
}
28
return
itFound->second;
29
}
L1MuGMTReadoutRecord
Definition:
L1MuGMTReadoutRecord.h:44
L1MuGMTReadoutCollection.h
simKBmtfDigis_cfi.bx
bx
Definition:
simKBmtfDigis_cfi.py:55
s_empty_record_cache
static tbb::concurrent_unordered_map< int, L1MuGMTReadoutRecord > s_empty_record_cache
Definition:
L1MuGMTReadoutCollection.cc:19
L1MuGMTReadoutCollection::getDefaultFor
static L1MuGMTReadoutRecord const & getDefaultFor(int bx)
Definition:
L1MuGMTReadoutCollection.cc:21
Generated for CMSSW Reference Manual by
1.8.14