wavecatcher-analysis
Loading...
Searching...
No Matches
Legacy_functions.h
Go to the documentation of this file.
1
2#ifndef _Legacy_functions
3#define _Legacy_functions
4
5#include "ReadRun.h"
6
7class Legacy_functions : public virtual ReadRun {
8public:
11 Legacy_functions(int no_of_bin_files_to_read) : ReadRun(no_of_bin_files_to_read) { }
12
13 void FractionEventsAboveThreshold(float = 4, bool = true, bool = true, double = 0., double = 0., bool = false);
14};
15#endif
Class containing legacy functions to be removed in the future. Let me know if they are still in use.
void FractionEventsAboveThreshold(float=4, bool=true, bool=true, double=0., double=0., bool=false)
Find events with max/min above/below a certain threshold.
Legacy_functions(int no_of_bin_files_to_read)
Initializer will call initializer of ReadRun class.