Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
RecoTracker
TkMSParametrization
interface
rangeIntersection.h
Go to the documentation of this file.
1
#ifndef rangeIntersection_H
2
#define rangeIntersection_H
3
4
#include "
TrackingTools/DetLayers/interface/rangesIntersect.h
"
5
#include <algorithm>
6
15
template
<
class
Range>
16
inline
Range
rangeIntersection
(
const
Range
&
a
,
const
Range
&
b
) {
17
return
Range
(
std::max
(a.first, b.first),
std::min
(a.second, b.second));
18
}
19
20
template
<
class
Range,
class
Less>
21
inline
Range
rangeIntersection
(
const
Range
&
a
,
const
Range
&
b
,
const
Less& less) {
22
return
Range
(
std::max
(a.first, b.first, less),
std::min
(a.second, b.second, less));
23
}
24
25
#endif
Range
PixelRecoRange< float > Range
Definition:
PixelTripletHLTGenerator.cc:28
SiStripPI::min
Definition:
SiStripPayloadInspectorHelper.h:169
SiStripPI::max
Definition:
SiStripPayloadInspectorHelper.h:169
rangesIntersect.h
b
double b
Definition:
hdecay.h:118
a
double a
Definition:
hdecay.h:119
rangeIntersection
Range rangeIntersection(const Range &a, const Range &b)
Definition:
rangeIntersection.h:16
Generated for CMSSW Reference Manual by
1.8.5