Skip to content

Commit

Permalink
Updt. README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
IftachSadeh committed Dec 30, 2016
1 parent 9e31ea2 commit a16e179
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ Randomized classification may be used for general classification problems. In th

- python 2.7 or higher.
- gcc 4.3 or higher.
- ROOT 5.34/11 or higher.
- ROOT 5.34/11 to 6.06.

### Download (and if needed install) ROOT

ROOT is available [here](https://root.cern.ch/drupal/content/downloading-root). ROOT v5.34/25 was used for development, and v6.02/05 for testing. Later ROOT versions should also be compatible (please report any issues).
ROOT is available [here](https://root.cern.ch/drupal/content/downloading-root). ROOT v5.34/25 was used for development, and v6.06 for testing. At the moment, ROOT version 6.08 is NOT supported.
<!-- Later ROOT versions should also be compatible (please report any issues). -->

Lets assume we want to install ROOT at `/home/work/root`. We can get ROOT, in one of two ways (as explained on the ROOT site):

Expand Down
2 changes: 2 additions & 0 deletions examples/scripts/commonImports.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

log = logging.getLogger('annzLog')
annzDir = os.getcwd() if not "ANNZSYS" in os.environ else os.environ["ANNZSYS"]
if annzDir[-1] is not "/":
annzDir += "/"
libDirName = os.path.join(annzDir,"lib")
exeName = os.path.join(libDirName,"myANNZ")

Expand Down
2 changes: 1 addition & 1 deletion src/ANNZ_loopReg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3453,7 +3453,7 @@ void ANNZ::doMetricPlots(TChain * aChain, vector <TString> * addPlotVarV, TStri
TString cutStr("_comn"), hisTmpName("his1_TMP");

int nMLMnow = max(0, glob->GetOptI("nMLMnow"));
TString MLMname = (TString)( (nTagBestMLM == 0) ? getTagName(nMLMnow) : regBestNameVal);
TString MLMname = (TString)((nTagBestMLM == 0) ? getTagName(nMLMnow) : regBestNameVal);

TString treeCuts = (TString)getTrainTestCuts(cutStr,nMLMnow,0,0,var);
TString drawExprs = (TString)MLMname+"-"+zTrgName+">>"+hisTmpName;
Expand Down

0 comments on commit a16e179

Please sign in to comment.