/search.css" rel="stylesheet" type="text/css"/> /search.js">
#include "DybAbortEventAlg.h"
#include "GaudiKernel/Incident.h"
#include "GaudiKernel/IIncidentSvc.h"
#include "Event/ReadoutHeader.h"
Go to the source code of this file.
Functions | |
bool | isin (const string &str, const vector< string > &lst) |
bool isin | ( | const string & | str, |
const vector< string > & | lst | ||
) |
Definition at line 36 of file DybAbortEventAlg.cc.
{ size_t siz = 0; siz = lst.size(); if (!siz) return false; for (size_t ind=0; ind<siz; ++ind) { if (str == lst[ind]) return true; } return false; }