Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
src
Alignment
Geners
src
SearchSpecifier.cc
Go to the documentation of this file.
1
#include "Alignment/Geners/interface/SearchSpecifier.hh"
2
3
namespace
gs
{
4
bool
SearchSpecifier::matches(
const
std::string
& sentence)
const
5
{
6
if
(useRegex_)
7
#ifdef CPP11_STD_AVAILABLE
8
return
std::regex_match(sentence.begin(), sentence.end(), regex_);
9
#else
10
return
regex_.matches(sentence);
11
#endif
12
else
13
return
sentence == tag_;
14
}
15
}
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:255
trackerHitRTTI::gs
Definition:
BaseTrackerRecHit.h:18
Generated for CMSSW Reference Manual by
1.8.5