CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FromFiles.cc
Go to the documentation of this file.
4 
5 namespace edm {
7  catalog_(pset.getUntrackedParameter<std::vector<std::string> >("fileNames"),
8  pset.getUntrackedParameter<std::string>("overrideCatalog", std::string())),
9  fileIndex_(0) {
10  }
11 
13 
14  void
16  std::vector<std::string> defaultStrings;
17  desc.addUntracked<std::vector<std::string> >("fileNames", defaultStrings)
18  ->setComment("Names of files to be processed.");
19  desc.addUntracked<std::string>("overrideCatalog", std::string());
20  }
21 
22  size_t
24  return fileIndex_;
25  }
26 }
27 
28 
FromFiles(ParameterSet const &pset)
Definition: FromFiles.cc:6
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
static void fillDescription(ParameterSetDescription &desc)
Definition: FromFiles.cc:15
size_t fileIndex_
Definition: FromFiles.h:34
size_t fileIndex() const
Definition: FromFiles.cc:23