rootErrMsgs.h
Go to the documentation of this file.
1 #ifndef art_Framework_IO_Root_rootErrMsgs_h
2 #define art_Framework_IO_Root_rootErrMsgs_h
3 
4 #include <string>
5 
6 namespace art {
7 
8  inline std::string
9  couldNotFindTree(std::string const& treename)
10  {
11  std::string message = "Could not find tree ";
12  message.append(treename);
13  message.append(" in the input file.\n");
14  return message;
15  }
16 
17 } // namespace art
18 
19 #endif /* art_Framework_IO_Root_rootErrMsgs_h */
20 
21 // Local Variables:
22 // mode: c++
23 // End:
std::string string
Definition: nybbler.cc:12
std::string couldNotFindTree(std::string const &treename)
Definition: rootErrMsgs.h:9