Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:31

0001 #ifndef Fireworks_Core_FWEDProductRepresentationChecker_h
0002 #define Fireworks_Core_FWEDProductRepresentationChecker_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWEDProductRepresentationChecker
0007 //
0008 /**\class FWEDProductRepresentationChecker FWEDProductRepresentationChecker.h Fireworks/Core/interface/FWEDProductRepresentationChecker.h
0009 
0010    Description: <one line class summary>
0011 
0012    Usage:
0013     <usage>
0014 
0015  */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Tue Nov 11 15:20:05 EST 2008
0019 //
0020 
0021 // system include files
0022 #include <string>
0023 
0024 // user include files
0025 #include "Fireworks/Core/interface/FWRepresentationCheckerBase.h"
0026 
0027 // forward declarations
0028 
0029 class FWEDProductRepresentationChecker : public FWRepresentationCheckerBase {
0030 public:
0031   FWEDProductRepresentationChecker(const std::string& iTypeidName,
0032                                    const std::string& iPurpose,
0033                                    unsigned int iBitPackedViews,
0034                                    bool iRepresentsSubPart,
0035                                    bool iRequiresFF = false);
0036 
0037   // ---------- const member functions ---------------------
0038   FWRepresentationInfo infoFor(const std::string& iTypeName) const override;
0039 
0040   // ---------- static member functions --------------------
0041 
0042   // ---------- member functions ---------------------------
0043 
0044   FWEDProductRepresentationChecker(const FWEDProductRepresentationChecker&) = delete;  // stop default
0045 
0046   const FWEDProductRepresentationChecker& operator=(const FWEDProductRepresentationChecker&) = delete;  // stop default
0047 
0048 private:
0049   // ---------- member data --------------------------------
0050   const std::string m_typeidName;
0051 };
0052 
0053 #endif