EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EventHeaderv2.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EventHeaderv2.cc
1 #include "EventHeaderv2.h"
2 
3 #include <iostream>
4 
6 {
8  m_bunchCrossing = 0;
9 }
10 
11 void EventHeaderv2::identify(std::ostream& out) const
12 {
13  out << "identify yourself: I am an EventHeaderv2 Object" << std::endl;
14  out
15  << "Run Number: " << get_RunNumber()
16  << ", Event no: " << get_EvtSequence()
17  << ", Type: " << get_EvtType()
18  << ", bunch crossing: " << m_bunchCrossing
19  << std::endl;
20 }