CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
FWEDProductRepresentationChecker Class Reference

#include <Fireworks/Core/interface/FWEDProductRepresentationChecker.h>

Inheritance diagram for FWEDProductRepresentationChecker:
FWRepresentationCheckerBase

Public Member Functions

 FWEDProductRepresentationChecker (const std::string &iTypeidName, const std::string &iPurpose, unsigned int iBitPackedViews, bool iRepresentsSubPart, bool iRequiresFF=false)
 
 FWEDProductRepresentationChecker (const FWEDProductRepresentationChecker &)=delete
 
FWRepresentationInfo infoFor (const std::string &iTypeName) const override
 
const FWEDProductRepresentationCheckeroperator= (const FWEDProductRepresentationChecker &)=delete
 
- Public Member Functions inherited from FWRepresentationCheckerBase
unsigned int bitPackedViews () const
 
 FWRepresentationCheckerBase (const std::string &iPurpose, unsigned int iBitPackedViews, bool iRepresentsSubPart, bool iRequiresFF=false)
 
 FWRepresentationCheckerBase (const FWRepresentationCheckerBase &)=delete
 
const FWRepresentationCheckerBaseoperator= (const FWRepresentationCheckerBase &)=delete
 
const std::string & purpose () const
 
bool representsSubPart () const
 
bool requiresFF () const
 
virtual ~FWRepresentationCheckerBase ()
 

Private Attributes

const std::string m_typeidName
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 29 of file FWEDProductRepresentationChecker.h.

Constructor & Destructor Documentation

◆ FWEDProductRepresentationChecker() [1/2]

FWEDProductRepresentationChecker::FWEDProductRepresentationChecker ( const std::string &  iTypeidName,
const std::string &  iPurpose,
unsigned int  iBitPackedViews,
bool  iRepresentsSubPart,
bool  iRequiresFF = false 
)

Definition at line 31 of file FWEDProductRepresentationChecker.cc.

36  : FWRepresentationCheckerBase(iPurpose, iBitPackedViews, iRepresentsSubPart, iRequiresFF),
37  m_typeidName(iTypeidName) {}
FWRepresentationCheckerBase(const std::string &iPurpose, unsigned int iBitPackedViews, bool iRepresentsSubPart, bool iRequiresFF=false)

◆ FWEDProductRepresentationChecker() [2/2]

FWEDProductRepresentationChecker::FWEDProductRepresentationChecker ( const FWEDProductRepresentationChecker )
delete

Member Function Documentation

◆ infoFor()

FWRepresentationInfo FWEDProductRepresentationChecker::infoFor ( const std::string &  iTypeName) const
overridevirtual

Implements FWRepresentationCheckerBase.

Definition at line 67 of file FWEDProductRepresentationChecker.cc.

References FWRepresentationCheckerBase::bitPackedViews(), m_typeidName, FWRepresentationCheckerBase::purpose(), FWRepresentationCheckerBase::representsSubPart(), and FWRepresentationCheckerBase::requiresFF().

67  {
68  TClass* clss = TClass::GetClass(iTypeName.c_str());
69  if (nullptr == clss || clss->GetTypeInfo() == nullptr) {
70  return FWRepresentationInfo();
71  }
72  if (clss->GetTypeInfo()->name() == m_typeidName) {
74  }
75  return FWRepresentationInfo();
76 }
const std::string & purpose() const

◆ operator=()

const FWEDProductRepresentationChecker& FWEDProductRepresentationChecker::operator= ( const FWEDProductRepresentationChecker )
delete

Member Data Documentation

◆ m_typeidName

const std::string FWEDProductRepresentationChecker::m_typeidName
private

Definition at line 50 of file FWEDProductRepresentationChecker.h.

Referenced by infoFor().