Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:11

0001 #include "EventHeader.h"
0002 #include <iostream>
0003 
0004 /// Clear Event
0005 void EventHeader::Reset()
0006 {
0007   std::cout << __PRETTY_FUNCTION__
0008             << "ERROR Reset() not implemented by daughter class" << std::endl;
0009   return;
0010 }
0011 
0012 /** identify Function from PHObject
0013  @param os Output Stream
0014  */
0015 void EventHeader::identify(std::ostream& os) const
0016 {
0017   os << "identify yourself: virtual EventHeader Object" << std::endl;
0018   return;
0019 }
0020 
0021 /// isValid returns non zero if object contains valid data
0022 int EventHeader::isValid() const
0023 {
0024   std::cout << __PRETTY_FUNCTION__ << "isValid not implemented by daughter class"
0025             << std::endl;
0026   return 0;
0027 }