00001 00002 namespace edm { 00003 00004 class EventProcessor; 00005 class SubProcess; 00006 class ParameterSetDescription; 00007 00008 class IllegalParameters { 00009 private: 00010 static bool throwAnException_; 00011 static bool throwAnException() { return throwAnException_; } 00012 static void setThrowAnException(bool v) { throwAnException_ = v; } 00013 00014 friend class EventProcessor; 00015 friend class SubProcess; 00016 friend class ParameterSetDescription; 00017 }; 00018 }