CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/DPGAnalysis/Skims/interface/DetStatus.h

Go to the documentation of this file.
00001 #ifndef DetStatus_H
00002 #define DetStatus_H
00003 
00004 #include "FWCore/Framework/interface/EDFilter.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006  
00007 class DetStatus : public edm::EDFilter {
00008  public:
00009  DetStatus( const edm::ParameterSet & );
00010  ~DetStatus();
00011   private:
00012   bool filter( edm::Event &, edm::EventSetup const& );
00013 
00014   bool verbose_;
00015   bool applyfilter_;
00016   bool AndOr_;
00017   std::vector<std::string>  DetNames_;
00018   unsigned int DetMap_;
00019 
00020 };
00021 
00022 #endif