Pixie16 Analysis Software Suite
Analysis code for processing of .ldf files
CfdAnalyzer.hpp
Go to the documentation of this file.
1 
6 #ifndef __CFDANALYZER_HPP_
7 #define __CFDANALYZER_HPP_
8 
9 #include "HighResTimingData.hpp"
10 #include "Trace.hpp"
11 #include "TraceAnalyzer.hpp"
12 
14 class CfdAnalyzer : public TraceAnalyzer {
15 public:
17  CfdAnalyzer();
21  virtual void DeclarePlots(void) const {};
26  virtual void Analyze(Trace &trace, const std::string &detType,
27  const std::string &detSubtype);
28 };
29 #endif
virtual void Analyze(Trace &trace, const std::string &detType, const std::string &detSubtype)
Header file for the TraceAnalyzer class.
Class to hold all of the information for high resolution timing.
Online trace analysis.
Definition: TraceAnalyzer.hpp:19
Store the information for a trace.
Definition: Trace.hpp:34
A simple class to store the traces.
virtual void DeclarePlots(void) const
Definition: CfdAnalyzer.hpp:21
~CfdAnalyzer()
Definition: CfdAnalyzer.hpp:19
Class to analyze traces using a digital CFD.
Definition: CfdAnalyzer.hpp:14