-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38759 from ptcox/update-cscvalidation-for-12x
Update cscvalidation for 12x
- Loading branch information
Showing
13 changed files
with
6,447 additions
and
1,960 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
RecoLocalMuon/CSCValidation/macros/makePlots_interactive.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
## | ||
## Call makePlots.C to make plots from root file output of CSCValidation | ||
## CSC DPG - Tim Cox - 12.07.2022 | ||
## Run it like | ||
## ./makePlots.sh path_to_root_file | ||
## The plots are png files and produced in the current directory | ||
## Remains in root, so need '.q' to quit | ||
## | ||
ARG1=$1 | ||
echo "Called with arg = "${ARG1} | ||
root 'makePlots.C( "'${ARG1}'" )' | ||
|
Oops, something went wrong.