LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
LArPropertiesStandardTestHelpers.h
Go to the documentation of this file.
1 
17 #ifndef LARDATA_DETECTORINFO_LARPROPERTIESSTANDARDTESTHELPERS_H
18 #define LARDATA_DETECTORINFO_LARPROPERTIESSTANDARDTESTHELPERS_H 1
19 
20 // LArSoft libraries
23 
24 // framework and utility libraries
25 #include "fhiclcpp/ParameterSet.h"
27 
28 // C/C++ standard libraries
29 #include <string>
30 #include <memory> // std::unique_ptr<>
31 
32 
33 namespace testing {
34 
42  template <>
43  struct ProviderSetupClass<detinfo::LArPropertiesStandard> {
44 
45  static std::unique_ptr<detinfo::LArPropertiesStandard> setup
46  (fhicl::ParameterSet const& pset)
47  {
48  // some feedback about whether we are using the right configuration
49  std::string ServiceProviderPath;
50  if (pset.get_if_present("service_provider", ServiceProviderPath)) {
51  std::string ServiceProviderName = ServiceProviderPath;
52  size_t iSlash = ServiceProviderPath.rfind('/');
53  if (iSlash != std::string::npos)
54  ServiceProviderName.erase(0, iSlash + 1);
55 
56  if (ServiceProviderName == "LArPropertiesServiceStandard") {
57  LOG_TRACE("setupProvider")
58  << "Verified service implementation for LArPropertiesService: '"
59  << ServiceProviderPath << "'";
60  }
61  else {
62  mf::LogWarning("setupProvider")
63  << "This set up is for a LArPropertiesStandard provider.\n"
64  "Your configuration specifies a '" << ServiceProviderPath
65  << "' service implementation that is not known to use that provider.";
66  }
67  }
68 
69  //
70  // create the new LArPropertiesStandard service provider
71  //
72  return std::make_unique<detinfo::LArPropertiesStandard>(pset);
73  } // setup()
74  }; // ProviderSetup<LArPropertiesStandard>
75 
76 
102  template <typename TestEnv>
103  struct SimpleEnvironmentSetupClass<detinfo::LArPropertiesStandard, TestEnv> {
104  static detinfo::LArPropertiesStandard* setup(TestEnv& env)
105  {
108  (env, "LArPropertiesService");
109  }
110  }; // SimpleEnvironmentSetupClass<detinfo::LArPropertiesStandard>
111 
112 
113 } // namespace testing
114 
115 
116 #endif // LARDATA_DETECTORINFO_LARPROPERTIESSTANDARDTESTHELPERS_H
LArSoft test utilities.
Helper classes to be used together with LArSoft&#39;s unit test.
Service provider with utility LAr functions.
static std::unique_ptr< Prov > setup(Args &&...args)
Instantiates a new provider with specified arguments for constructor.
Environment helper to set up a service provider.
Class to create and set up a new provider.
bool get_if_present(std::string const &key, T &value) const
Definition: ParameterSet.h:208
General LArSoft Utilities.
Prov * SimpleEnvironmentStandardSetupByName(TestEnv &env, std::string service_name)
Basic implementation of a environment setup helper.
Properties related to liquid argon environment in the detector.
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
#define LOG_TRACE(id)