mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2024-11-23 02:28:50 -05:00
19 lines
384 B
C
19 lines
384 B
C
|
/*
|
||
|
OrderChecker.h
|
||
|
Very simple class designed to test whether or not a root file is time ordered.
|
||
|
Meant to be used with newly converted from binary data. Only for development.
|
||
|
|
||
|
Written by G.W. McCann Oct. 2020
|
||
|
*/
|
||
|
#ifndef ORDERCHECKER_H
|
||
|
#define ORDERCHECKER_H
|
||
|
|
||
|
class OrderChecker {
|
||
|
public:
|
||
|
OrderChecker();
|
||
|
~OrderChecker();
|
||
|
bool IsOrdered(const std::string& filename);
|
||
|
};
|
||
|
|
||
|
#endif
|