31#ifndef G4ATTRIBUTEFILTERT_HH
32#define G4ATTRIBUTEFILTERT_HH
56 virtual bool Evaluate(
const T&)
const;
59 virtual void Print(std::ostream& ostr)
const;
71 enum Config {Interval, SingleValue};
73 typedef std::pair<G4String, Config> Pair;
74 typedef std::vector<Pair> ConfigVect;
78 ConfigVect fConfigVect;
105 if (fAttName.empty())
return true;
108 if (fConfigVect.size() == 0)
return true;
119 static G4bool warnedUnableToExtract =
false;
120 if (!warnedUnableToExtract) {
122 ed <<
"Unable to extract attribute definition named "<<fAttName<<
'\n'
123 <<
"Available attributes:\n"
124 << *
object.GetAttDefs();
126 (
"G4AttributeFilterT::Evaluate",
"modeling0102",
JustWarning, ed,
"Invalid attribute definition");
127 warnedUnableToExtract =
true;
136 typename ConfigVect::const_iterator iter = fConfigVect.begin();
138 while (iter != fConfigVect.end()) {
139 if (iter->second == G4AttributeFilterT<T>::Interval) {filter->LoadIntervalElement(iter->first);}
140 else if (iter->second == G4AttributeFilterT<T>::SingleValue) {filter->LoadSingleValueElement(iter->first);}
150 static G4bool warnedUnableToExtract =
false;
151 if (!warnedUnableToExtract) {
153 ed <<
"Unable to extract attribute definition named "<<fAttName<<
'\n'
154 <<
"Available attributes:\n"
155 << *
object.GetAttDefs();
157 (
"G4AttributeFilterT::Evaluate",
"modeling0103",
JustWarning, ed,
"InvalidAttributeValue");
158 warnedUnableToExtract =
true;
164 G4cout<<
"G4AttributeFilterT processing attribute named "<<fAttName;
169 return (filter->Accept(attVal));
177 if (0 != filter) filter->Reset();
184 ostr<<
"Printing data for G4Attribute filter named: "<<
G4VFilter<T>::Name()<<std::endl;
185 ostr<<
"Filtered attribute name: "<<fAttName<<std::endl;
186 ostr<<
"Printing sub filter data:"<<std::endl;
187 if (0 != filter) filter->PrintAll(ostr);
201 std::pair<G4String, Config> myPair(interval, G4AttributeFilterT<T>::Interval);
203 typename ConfigVect::iterator iter = std::find(fConfigVect.begin(), fConfigVect.end(), myPair);
205 if (iter != fConfigVect.end()) {
207 ed <<
"Interval "<< interval <<
" already exists";
209 (
"G4AttributeFilterT::AddInterval",
"modeling0104",
JustWarning, ed);
213 fConfigVect.push_back(std::move(myPair));
220 std::pair<G4String, Config> myPair(value, G4AttributeFilterT<T>::SingleValue);
222 typename ConfigVect::iterator iter = std::find(fConfigVect.begin(), fConfigVect.end(), myPair);
224 if (iter != fConfigVect.end()) {
226 ed <<
"Single value "<< value <<
" already exists";
228 (
"G4AttributeFilterT::AddValue",
"modeling0105",
JustWarning, ed);
231 fConfigVect.push_back(std::move(myPair));
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
const G4String & GetValue() const
virtual ~G4AttributeFilterT()
void AddValue(const G4String &)
void Set(const G4String &name)
G4AttributeFilterT(const G4String &name="Unspecified")
virtual bool Evaluate(const T &) const
void AddInterval(const G4String &)
virtual void Print(std::ostream &ostr) const
G4SmartFilter(const G4String &name)
G4bool GetVerbose() const
G4VAttValueFilter * GetNewFilter(const G4AttDef &def)
G4bool ExtractAttDef(const T &object, const G4String &name, G4AttDef &def)
G4bool ExtractAttValue(const T &object, const G4String &name, G4AttValue &attVal)