Skip to content

Commit

Permalink
FastB off by default in both data and MC
Browse files Browse the repository at this point in the history
  • Loading branch information
fprino committed May 7, 2018
1 parent 26cf888 commit b8e13c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DataProc/CPass0/main_recCPass0.C
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void main_recCPass0(const char *filename="raw.root",Int_t nevents=-1, const char
}

/** fast magnetic field **/
Bool_t useFast=kTRUE;
Bool_t useFast=kFALSE; // disable fast B due to issue in the muon arm (07-May-2018)
if(gSystem->Getenv("ALIEN_JDL_DISABLEFASTB")){
TString optionFast=gSystem->Getenv("ALIEN_JDL_DISABLEFASTB");
if(optionFast!=""){
Expand Down
2 changes: 1 addition & 1 deletion DataProc/CPass1/main_recCPass1.C
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void main_recCPass1(const char *filename="raw.root",Int_t nevents=-1, const char
}

/** fast magnetic field **/
Bool_t useFast=kTRUE;
Bool_t useFast=kFALSE; // disable fast B due to issue in the muon arm (07-May-2018)
if(gSystem->Getenv("ALIEN_JDL_DISABLEFASTB")){
TString optionFast=gSystem->Getenv("ALIEN_JDL_DISABLEFASTB");
if(optionFast!=""){
Expand Down
2 changes: 1 addition & 1 deletion DataProc/PPass/main_rec.C
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void main_rec(const char *filename="raw.root", const char* options="")
}

/** fast magnetic field **/
Bool_t useFast=kTRUE;
Bool_t useFast=kFALSE; // disable fast B due to issue in the muon arm (07-May-2018)
if(gSystem->Getenv("ALIEN_JDL_DISABLEFASTB")){
TString optionFast=gSystem->Getenv("ALIEN_JDL_DISABLEFASTB");
if(optionFast!=""){
Expand Down
2 changes: 1 addition & 1 deletion DataProc/muon_calo/main_rec.C
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void main_rec(const char *filename="raw.root")
rec.SetUseTrackingErrorsForAlignment("ITS");

/** fast magnetic field **/
Bool_t useFast=kTRUE;
Bool_t useFast=kFALSE; // disable fast B due to issue in the muon arm (07-May-2018)
if(gSystem->Getenv("ALIEN_JDL_DISABLEFASTB")){
TString optionFast=gSystem->Getenv("ALIEN_JDL_DISABLEFASTB");
if(optionFast!=""){
Expand Down
2 changes: 1 addition & 1 deletion MC/dpgsim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ CONFIG_PURIFYKINEOFF=""
CONFIG_HLT=""
CONFIG_GEANT4=""
CONFIG_FLUKA=""
CONFIG_FASTB="on"
CONFIG_FASTB=""
CONFIG_VDT="on"
CONFIG_MATERIAL=""
CONFIG_KEEPTRACKREFSFRACTION="0"
Expand Down

0 comments on commit b8e13c7

Please sign in to comment.