Skip to content

Instantly share code, notes, and snippets.

@jdbrice
Created April 25, 2018 03:10
Show Gist options
  • Save jdbrice/a211b59c120cfebfd9dab9568f1d69a6 to your computer and use it in GitHub Desktop.
Save jdbrice/a211b59c120cfebfd9dab9568f1d69a6 to your computer and use it in GitHub Desktop.
A sub class of HistoMaker
#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