Browse Source

Update 'README.md'

caleb 6 years ago
parent
commit
49b7578fdf
1 changed files with 5 additions and 9 deletions
  1. 5 9
      README.md

+ 5 - 9
README.md

@@ -1,4 +1,4 @@
-# EGamma Electron Tracking Validation
+# EGamma Electron Seeding Validation
 ## How To Run
 Run the following commands to download, compile, and run the analysis routine.
 
@@ -9,14 +9,10 @@ cd EGamma_ElectronTrackingValidation
 mkdir build
 cd build
 cmake ..
-make
-./tracking_validation -l LABEL -f PATH_TO_NTUPLE
+cmake --target tracking_eff -- -j2
+cd ..
+./build/tracking_eff -c analysis/config.yaml
 ```
 
-Where `LABEL` is an arbitrary string used to keep track of, for example, what dataset is contained in the source Ntuple, and `PATH_TO_NTUPLE` is the path to the `trackingNtuple.root` file that you want to run over.
+See the included config file for what should be included. If everything runs successfully, there will be a a root file in the `hists/` directory containing all generated histograms as well as a log file.
 
-If everything runs successfully, there will be a log file and new root file in the directory containing the source Ntuple. If there are errors, you can check the log file for hints to what happened. The new root file will be suffixed with "`_result`".
-
-
-## TODO:
-  - ~~Enable specifying multiple root files to chain together.~~