Go to the documentation of this file.00001 #ifndef FWCore_Framework_ScheduleInfo_h
00002 #define FWCore_Framework_ScheduleInfo_h
00003
00004
00005
00006
00007
00016
00017
00018
00019
00020
00021
00022
00023 #include <vector>
00024 #include <string>
00025
00026
00027
00028
00029 namespace edm {
00030 class ParameterSet;
00031 class Schedule;
00032
00033 class ScheduleInfo {
00034
00035 public:
00036 ScheduleInfo(const Schedule*);
00037 virtual ~ScheduleInfo();
00038
00039
00040
00042 void availableModuleLabels(std::vector<std::string>& oLabelsToFill) const;
00043
00047 const edm::ParameterSet* parametersForModule(const std::string& iLabel) const;
00048
00050 void availablePaths( std::vector<std::string>& oLabelsToFill) const;
00051
00053 void modulesInPath(const std::string& iPathLabel,
00054 std::vector<std::string>& oLabelsToFill) const;
00055
00056
00057
00058
00059 private:
00060
00061
00062
00063
00064
00065 const Schedule* schedule_;
00066
00067 };
00068
00069 }
00070
00071 #endif