ATLAS Offline Software
FPGATrackSimNNMap.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 
3 #ifndef FPGATrackSimNNMAP_H
4 #define FPGATrackSimNNMAP_H
5 
20 #include <fstream>
21 #include <string>
22 #include <memory>
23 
25 {
26  public:
27 
29  // Constructor/Destructor
30  FPGATrackSimNNMap(const std::string & filepath);
31 
33  // Simple Getters/Setters
34 
35  const std::string& getNNMap() const;
36 
38  // Main Interface Functions
39 
40  private:
41 
43  // Member Variables
44  std::string m_weightsFileName;
45 
47  // Helper Functions
48 
49 };
50 
51 #endif // FPGATrackSimNNMAP_H
FPGATrackSimNNMap::getNNMap
const std::string & getNNMap() const
Definition: FPGATrackSimNNMap.cxx:41
FPGATrackSimNNMap::m_weightsFileName
std::string m_weightsFileName
Definition: FPGATrackSimNNMap.h:44
FPGATrackSimNNMap::FPGATrackSimNNMap
FPGATrackSimNNMap(const std::string &filepath)
Definition: FPGATrackSimNNMap.cxx:26
FPGATrackSimNNMap
Definition: FPGATrackSimNNMap.h:25