MultiFileCatalog.cpp File Reference
#include "GaudiKernel/DeclareFactoryEntries.h"
#include "GaudiKernel/strcasecmp.h"
#include "GaudiKernel/MsgStream.h"
#include "Reflex/PluginService.h"
#include "MultiFileCatalog.h"
#include <stdexcept>
#include <algorithm>
Go to the source code of this file.
Function Documentation
template<class V, class F>
| bool @705::_findX0Bool |
( |
V & |
array, |
|
|
F |
pmf, |
|
|
bool |
invert | |
|
) |
| | [inline, static] |
Definition at line 18 of file MultiFileCatalog.cpp.
00018 {
00019 for(typename V::const_iterator i=array.begin(); i != array.end(); ++i) {
00020 bool res = invert ? !((*i)->*pmf)() : ((*i)->*pmf)();
00021 if ( !res ) return false;
00022 }
00023 return true;
00024 }