Created
April 25, 2018 03:10
-
-
Save jdbrice/a211b59c120cfebfd9dab9568f1d69a6 to your computer and use it in GitHub Desktop.
A sub class of HistoMaker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SIGNAL_MAKER_H | |
#define SIGNAL_MAKER_H | |
#include "HistoAnalyzer.h" | |
#include "vendor/loguru.h" | |
class SignalMaker : public HistoAnalyzer { | |
protected: | |
public: | |
SignalMaker(){} | |
~SignalMaker(){} | |
virtual void initialize(){ | |
LOG_F( INFO, "" ); | |
book->cd(); | |
} | |
virtual void make(){ | |
LOG_F( INFO, "" ); | |
} | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment