Pixie16 Analysis Software Suite
Analysis code for processing of .ldf files
TauAnalyzer.hpp
Go to the documentation of this file.
1 
4 #ifndef __TAUANALYZER_HPP_
5 #define __TAUANALYZER_HPP_
6 
7 #include <string>
8 
9 #include "TraceAnalyzer.hpp"
10 
12 class TauAnalyzer : public TraceAnalyzer {
13 public:
15  TauAnalyzer();
16 
20  TauAnalyzer(const std::string &aType, const std::string &aSubtype);
21 
24 
29  virtual void Analyze(Trace &trace, const std::string &aType,
30  const std::string &aSubtype);
31 private:
32  std::string type;
33  std::string subtype;
34 };
35 
36 #endif // __TAUANALYZER_HPP_
Header file for the TraceAnalyzer class.
Class to analyze Tau from a trace.
Definition: TauAnalyzer.hpp:12
~TauAnalyzer()
Definition: TauAnalyzer.hpp:23
Online trace analysis.
Definition: TraceAnalyzer.hpp:19
Store the information for a trace.
Definition: Trace.hpp:34
virtual void Analyze(Trace &trace, const std::string &aType, const std::string &aSubtype)
std::string type
the detector type
Definition: TauAnalyzer.hpp:32
std::string subtype
the detector subtype
Definition: TauAnalyzer.hpp:33