Class Reference for E1039 Core & Analysis Software
PHFieldUtility.h
Go to the documentation of this file.
1 #ifndef PHFieldUtility_HH__
2 #define PHFieldUtility_HH__
3 
4 #include <ctime>
5 #include <iostream>
6 #include <map>
7 #include <set>
8 #include <string>
9 
10 #include "PHFieldConfig.h"
11 
12 class PHCompositeNode;
13 class PHField;
14 class PHFieldConfig;
15 
18 {
19  protected:
20  // static tool sets only
22  virtual ~PHFieldUtility();
23 
24  public:
30 
34  static PHField *
35  GetFieldMapNode(const PHFieldConfig *default_config = nullptr, PHCompositeNode *topNode = nullptr, const int verbosity = 0);
36 
40  static PHFieldConfig *
41  GetFieldConfigNode(const PHFieldConfig *default_config = nullptr, PHCompositeNode *topNode = nullptr, const int verbosity = 0);
42 
44  static PHField *
45  BuildFieldMap(const PHFieldConfig *field_config, const int verbosity = 0);
46 
48  static std::string
50  {
51  return std::string("FIELD_MAP");
52  }
53 
55  static std::string
57  {
58  return std::string("FIELD_CONFIG");
59  }
60 
61  protected:
62 };
63 
64 #endif /* PHFieldUtility_HH__ */
PHFieldConfig store field configuration information.
Definition: PHFieldConfig.h:20
Toolsets to do geometry operations.
static std::string GetDSTFieldMapNodeName()
DST node name for RunTime field map object.
static PHField * GetFieldMapNode(const PHFieldConfig *default_config=nullptr, PHCompositeNode *topNode=nullptr, const int verbosity=0)
Get transient PHField from DST nodes. If not found, make a new one based on default_config.
static PHFieldConfig * DefaultFieldConfig()
static PHFieldConfig * GetFieldConfigNode(const PHFieldConfig *default_config=nullptr, PHCompositeNode *topNode=nullptr, const int verbosity=0)
Get persistent PHGeomIOTGeo from DST nodes. If not found, make a new one.
virtual ~PHFieldUtility()
static std::string GetDSTConfigNodeName()
DST node name for persistent field configuration node.
static PHField * BuildFieldMap(const PHFieldConfig *field_config, const int verbosity=0)
Build or build field map with a configuration object.
transient DST object for field storage and access
Definition: PHField.h:14