CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/FWCore/ParameterSet/interface/IllegalParameters.h

Go to the documentation of this file.
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 }