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
Right now we have a few scattered conditionals that check for some experiment names to decide what to build. But these are scattered across the different source files.
I think we should, instead, make flags that get configured in just one file. Ex:
effort to make the experiment configurations more evident, similar to
how the EArm is built right now.
This addresses some of the concerns in issue #9.
Right now we have a few scattered conditionals that check for some experiment names to decide what to build. But these are scattered across the different source files.
I think we should, instead, make flags that get configured in just one file. Ex:
if (kGEp) {
fBuild48D48 = true;
fBuildTargetSnout = true;
// ...
} else if (kGMn) {
fBuild48D48 = true;
fBuildTargetSnout = false;
// ...
}
That way, all the settings are in one file, and can be re-configured much quicker and hopefully, with less errors.
The text was updated successfully, but these errors were encountered: