Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AttributeFilterT< T > Class Template Reference

#include <G4AttributeFilterT.hh>

+ Inheritance diagram for G4AttributeFilterT< T >:

Public Member Functions

 G4AttributeFilterT (const G4String &name="Unspecified")
 
virtual ~G4AttributeFilterT ()
 
virtual bool Evaluate (const T &) const
 
virtual void Print (std::ostream &ostr) const
 
virtual void Clear ()
 
void Set (const G4String &name)
 
void AddInterval (const G4String &)
 
void AddValue (const G4String &)
 
- Public Member Functions inherited from G4SmartFilter< T >
 G4SmartFilter (const G4String &name)
 
virtual ~G4SmartFilter ()
 
G4bool Accept (const T &) const
 
virtual void PrintAll (std::ostream &ostr) const
 
virtual void Reset ()
 
void SetActive (const G4bool &)
 
G4bool GetActive () const
 
void SetInvert (const G4bool &)
 
G4bool GetInvert () const
 
void SetVerbose (const G4bool &)
 
G4bool GetVerbose () const
 
- Public Member Functions inherited from G4VFilter< T >
 G4VFilter (const G4String &name)
 
virtual ~G4VFilter ()
 
G4String Name () const
 
G4String GetName () const
 

Additional Inherited Members

- Public Types inherited from G4VFilter< T >
typedef T Type
 

Detailed Description

template<typename T>
class G4AttributeFilterT< T >

Definition at line 45 of file G4AttributeFilterT.hh.

Constructor & Destructor Documentation

◆ G4AttributeFilterT()

template<typename T>
G4AttributeFilterT< T >::G4AttributeFilterT ( const G4String & name = "Unspecified")

Definition at line 87 of file G4AttributeFilterT.hh.

89 ,fAttName("")
90 ,fFirst(true)
91 ,filter(0)
92{}
G4SmartFilter(const G4String &name)

◆ ~G4AttributeFilterT()

template<typename T>
G4AttributeFilterT< T >::~G4AttributeFilterT ( )
virtual

Definition at line 95 of file G4AttributeFilterT.hh.

96{
97 delete filter;
98}

Member Function Documentation

◆ AddInterval()

template<typename T>
void G4AttributeFilterT< T >::AddInterval ( const G4String & interval)

Definition at line 199 of file G4AttributeFilterT.hh.

200{
202
203 typename ConfigVect::iterator iter = std::find(fConfigVect.begin(), fConfigVect.end(), myPair);
204
205 if (iter != fConfigVect.end()) {
207 ed <<"Interval "<< interval <<" already exists";
209 ("G4AttributeFilterT::AddInterval", "modeling0104", JustWarning, ed);
210 return;
211 }
212
213 fConfigVect.push_back(std::move(myPair));
214}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ AddValue()

template<typename T>
void G4AttributeFilterT< T >::AddValue ( const G4String & value)

Definition at line 218 of file G4AttributeFilterT.hh.

219{
221
222 typename ConfigVect::iterator iter = std::find(fConfigVect.begin(), fConfigVect.end(), myPair);
223
224 if (iter != fConfigVect.end()) {
226 ed <<"Single value "<< value <<" already exists";
228 ("G4AttributeFilterT::AddValue", "modeling0105", JustWarning, ed);
229 return;
230 }
231 fConfigVect.push_back(std::move(myPair));
232}

◆ Clear()

template<typename T>
void G4AttributeFilterT< T >::Clear ( )
virtual

Implements G4SmartFilter< T >.

Definition at line 174 of file G4AttributeFilterT.hh.

175{
176 fConfigVect.clear();
177 if (0 != filter) filter->Reset();
178}

◆ Evaluate()

template<typename T>
G4bool G4AttributeFilterT< T >::Evaluate ( const T & object) const
virtual

Implements G4SmartFilter< T >.

Definition at line 102 of file G4AttributeFilterT.hh.

103{
104 // Return true (i.e., do not filter out) if attribute name has not yet been set.
105 if (fAttName.empty()) return true;
106
107 // ...or required attribute value has not yet been set
108 if (fConfigVect.size() == 0) return true;
109
110 if (fFirst) {
111
112 fFirst = false;
113
114 // Get attribute definition
116
117 // Expect definition to exist
118 if (!G4AttUtils::ExtractAttDef(object, fAttName, attDef)) {
119 static G4bool warnedUnableToExtract = false;
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");
128 }
129 return false;
130 }
131
132 // Get new G4AttValue filter
134
135 // Load both interval and single valued data.
136 typename ConfigVect::const_iterator iter = fConfigVect.begin();
137
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);}
141 iter++;
142 }
143 }
144
145 // Get attribute value
147
148 // Expect value to exist
149 if (!G4AttUtils::ExtractAttValue(object, fAttName, attVal)) {
150 static G4bool warnedUnableToExtract = false;
153 ed <<"Unable to extract attribute definition named "<<fAttName<<'\n'
154 << "Available attributes:\n"
155 << *object.GetAttDefs();
157 ("G4AttributeFilterT::Evaluate", "modeling0103", JustWarning, ed, "InvalidAttributeValue");
159 }
160 return false;
161 }
162
164 G4cout<<"G4AttributeFilterT processing attribute named "<<fAttName;
165 G4cout<<" with value "<<attVal.GetValue()<<G4endl;
166 }
167
168 // Pass subfilter
169 return (filter->Accept(attVal));
170}
G4VAttValueFilter * GetNewFilter(const G4AttDef &def)

◆ Print()

template<typename T>
void G4AttributeFilterT< T >::Print ( std::ostream & ostr) const
virtual

Implements G4SmartFilter< T >.

Definition at line 182 of file G4AttributeFilterT.hh.

183{
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);
188}
virtual void PrintAll(std::ostream &ostr) const
G4String Name() const
Definition G4VFilter.hh:80

◆ Set()

template<typename T>
void G4AttributeFilterT< T >::Set ( const G4String & name)

Definition at line 192 of file G4AttributeFilterT.hh.

193{
194 fAttName = name;
195}

The documentation for this class was generated from the following file: