Pixie16 Analysis Software Suite
Analysis code for processing of .ldf files
BetaProcessor.hpp
Go to the documentation of this file.
1 
5 #ifndef __BETAPROCESSOR_HPP_
6 #define __BETAPROCESSOR_HPP_
7 
8 #include "EventProcessor.hpp"
9 
11 class BetaProcessor : public EventProcessor {
12 public:
14  BetaProcessor();
22  virtual bool PreProcess(RawEvent &event);
28  virtual bool Process(RawEvent &event);
30  virtual void DeclarePlots(void);
31 };
32 #endif // __BETAPROCSSEOR_HPP_
virtual bool Process(RawEvent &event)
Main Processing for the class.
virtual void DeclarePlots(void)
Generic event processor.
~BetaProcessor()
Definition: BetaProcessor.hpp:16
virtual bool PreProcess(RawEvent &event)
PreProcessing for the class.
Class to handle event processing.
Definition: EventProcessor.hpp:25
The all important raw event.
Definition: RawEvent.hpp:46
Detector processor that handles scintillator events for beta detection (deprecated) ...
Definition: BetaProcessor.hpp:11