EventSelectorDataStream.h
Go to the documentation of this file.
1 //====================================================================
2 // EventSelectorDataStream.h
3 //--------------------------------------------------------------------
4 //
5 // Package : EventSelectorDataStream (LHCb Event Selector Package)
6 //
7 // Author : M.Frank
8 // Created : 4/10/00
9 // Changes : R. Lambert 2009-09-04
10 //
11 //====================================================================
12 #ifndef GAUDIKERNEL_EVENTSELECTORDATASTREAM_H
13 #define GAUDIKERNEL_EVENTSELECTORDATASTREAM_H 1
14 
15 // Include files
17 #include "GaudiKernel/Property.h"
18 
19 // STL include files
20 #include <vector>
21 #include <iostream>
22 
23 // Forward declarations
24 class MsgStream;
25 class ISvcLocator;
27 
45 class GAUDI_API EventSelectorDataStream: public implements<IInterface> {
50 public:
52 protected:
68  Properties m_properties;
70  bool m_initialized = false;
72  virtual ~EventSelectorDataStream() = default;
73 public:
77  virtual void setSelector(IEvtSelector* pSelector);
79  virtual StatusCode initialize();
81  virtual StatusCode finalize();
83  StringProperty* property(const std::string& nam);
85  const StringProperty* property(const std::string& nam) const;
87  const Properties& properties() {
88  return m_properties;
89  }
91  const std::string& name() const {
92  return m_name;
93  }
95  const std::string& criteria() const {
96  return m_criteria;
97  }
99  const std::string& dbName() const {
100  return m_dbName;
101  }
103  const std::string& selectorType() const {
104  return m_selectorType;
105  }
107  const std::string& definition() const {
108  return m_definition;
109  }
112  return m_pSelector.get();
113  }
115  bool isInitialized() const {
116  return m_initialized;
117  }
118 };
119 
124 
125 #endif // GAUDIKERNEL_EVENTSELECTORDATASTREAM_H
bool isInitialized() const
Check initialization status.
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
const std::string & name() const
Retrieve stream name.
Base class used to implement the interfaces.
Definition: implements.h:9
def initialize()
Definition: AnalysisTest.py:12
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
The Event Selector Interface.
Definition: IEvtSelector.h:18
IEvtSelector * selector() const
Retrieve event selector object.
std::string m_criteria
Criteria.
std::string m_selectorType
Event selector type.
STL class.
SmartIF< IEvtSelector > m_pSelector
Pointer to valid selector.
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:76
ISvcLocator * m_pSvcLocator
Reference to service locator.
std::vector< StringProperty > Properties
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
std::string m_definition
Definition string.
const std::string & definition() const
Retrieve definition string.
Properties m_properties
Properties vector.
Definition of class EventSelectorDataStream.
const std::string & selectorType() const
Retrieve event selector type.
string s
Definition: gaudirun.py:245
const Properties & properties()
Access properties.
std::string m_dbName
String with name of the db as parsed.
const std::string & criteria() const
Retrieve stream criteria.
#define GAUDI_API
Definition: Kernel.h:107
STL class.
GAUDI_API MsgStream & operator<<(MsgStream &s, const EventSelectorDataStream &obj)
Output friend for MsgStream.
const std::string & dbName() const
Retrieve stream dbName.