Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
DbgSource.h
1/*
2 * DbgSource.h
3 *
4 * Created on: 28 maj 2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef HAL_EXAMPLES_ONTHEFLY_DBGSOURCE_H_
10#define HAL_EXAMPLES_ONTHEFLY_DBGSOURCE_H_
11
12#include "Source.h"
13namespace Hal {
14 class IOManager;
15}
16
17namespace HalDbg {
18 class Source : public Hal::Source {
19 Int_t fEvents;
20 Hal::IOManager* fManager;
21
22 public:
23 Source(Int_t entries = 0);
24 virtual Hal::IOManager* GetIOManager() const;
25 Bool_t Init() { return kTRUE; }
26 virtual ~Source();
27 ClassDef(Source, 1)
28 };
29} // namespace HalDbg
30#endif /* HAL_EXAMPLES_ONTHEFLY_DBGSOURCE_H_ */
Bool_t Init()
Definition DbgSource.h:25
virtual Hal::IOManager * GetIOManager() const
Definition DbgSource.cxx:20