You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Frontend Native Fields: Fields defined in XXXFieldInfo in yt frontends. They can be fields derived from other existing fields with function defined inside XXXFieldInfo.
Things Should be Aware of
Field defined in XXXFieldInfo might not have the same name used inside libyt. For example, MagX and CCMagX in gamer. The first one is used inside inline-analysis, while the second one used in post-processing, even though both of them represent the same field.
Function defined inside XXXFieldInfo which derived these added fields don't know they are the same, and it should get MagX instead of CCMagX in inline-analysis. So it ends up an error.
Enhancement
Should add another data member in yt_field to match to an already exist definition inside XXXFieldInfo.
The text was updated successfully, but these errors were encountered:
Naming in
libyt
FieldsFrontend Native Fields: Fields defined in
XXXFieldInfo
in yt frontends. They can be fields derived from other existing fields with function defined insideXXXFieldInfo
.Things Should be Aware of
Field defined in
XXXFieldInfo
might not have the same name used insidelibyt
. For example,MagX
andCCMagX
ingamer
. The first one is used inside inline-analysis, while the second one used in post-processing, even though both of them represent the same field.Function defined inside
XXXFieldInfo
which derived these added fields don't know they are the same, and it should getMagX
instead ofCCMagX
in inline-analysis. So it ends up an error.Enhancement
Should add another data member in
yt_field
to match to an already exist definition insideXXXFieldInfo
.The text was updated successfully, but these errors were encountered: