EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TpcLoadDistortionCorrection.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TpcLoadDistortionCorrection.h
1 #ifndef TPC_TPCLOADDISTORTIONCORRECTION_H
2 #define TPC_TPCLOADDISTORTIONCORRECTION_H
3 
10 #include <fun4all/SubsysReco.h>
11 #include <phool/PHObject.h>
12 #include <phool/PHTimer.h>
13 #include <trackbase/TrkrDefs.h>
14 
15 #include <array>
16 
17 class TH3;
18 
20 {
21  public:
22 
24  TpcLoadDistortionCorrection( const std::string& = "TpcLoadDistortionCorrection" );
25 
27  int InitRun(PHCompositeNode*) override;
28 
30  int process_event(PHCompositeNode*) override;
31 
33  void set_distortion_filename( const std::string& value )
35 
37  void set_node_name( const std::string& value )
38  { m_node_name = value; }
39 
40  private:
41 
43  std::string m_distortion_filename;
44 
46  std::string m_node_name = "TpcDistortionCorrectionContainer";
47 
48 };
49 
50 #endif