ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
testEventiterator.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file testEventiterator.h
1 // -*- c++ -*-
2 #ifndef __TESTEVENTITERATOR_H__
3 #define __TESTEVENTITERATOR_H__
4 
5 #include "Eventiterator.h"
6 
7 #include "simpleRandom.h"
8 
17 #ifndef __CINT__
19 #else
20 class testEventiterator : public Eventiterator {
21 #endif
22 public:
27 
28  const char * getIdTag() const;
29  //#ifdef WIN32
30  virtual void identify(std::ostream& os = std::cout) const;
31 
32 
37  Event *getNextEvent();
38 
39 private:
40 #ifndef WIN32
42 #endif
44 
45  // these are the spots where we change anything per event later
46  int *e_sequence;
47  int *e_time;
49 
50  // we get somememory to generate the event
51  int e_data[256];
52 
53 };
54 
55 #endif /* __TESTEVENTITERATOR_H__ */
56