Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
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 "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
&
22
L1MuGMTReadoutCollection::getDefaultFor
(
int
bx) {
23
// if bx not found return empty readout record
24
auto
itFound =
s_empty_record_cache
.find(bx);
25
if
( itFound ==
s_empty_record_cache
.end()) {
26
auto
foundPair =
s_empty_record_cache
.insert( std::make_pair(bx,
L1MuGMTReadoutRecord
(bx)) );
27
itFound = foundPair.first;
28
}
29
return
itFound->second;
30
}
L1MuGMTReadoutRecord
Definition:
L1MuGMTReadoutRecord.h:44
L1MuGMTReadoutCollection.h
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:22
Generated for CMSSW Reference Manual by
1.8.5