Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include d<angle> vs. d<translation> plots in geometry comparison plotter #9879

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -145,7 +145,7 @@ def createScript(self, path):
".Comparison_common"+name+"_Images/CrossTalk\n")


### At the moment translations are immages with suffix _1 and _2, rotations _3 and _4, and cross talk _5 and _6
### At the moment translations are immages with suffix _1 and _2, rotations _3 and _4, and cross talk _5, _6, _7 and _8
### The numeration depends on the order of the MakePlots(x, y) commands in comparisonScript.C
### If comparisonScript.C is changed, check if the following lines need to be changed as well
repMap["runComparisonScripts"] += \
Expand Down Expand Up @@ -174,6 +174,14 @@ def createScript(self, path):
("find . -maxdepth 1 -name \"*_6*\" "
"-print | xargs -I {} bash -c \"rfcp {} .oO[datadir]Oo."
"/.oO[name]Oo..Comparison_common"+name+"_Images/CrossTalk/\" \n")
repMap["runComparisonScripts"] += \
("find . -maxdepth 1 -name \"*_7*\" "
"-print | xargs -I {} bash -c \"rfcp {} .oO[datadir]Oo."
"/.oO[name]Oo..Comparison_common"+name+"_Images/CrossTalk/\" \n")
repMap["runComparisonScripts"] += \
("find . -maxdepth 1 -name \"*_8*\" "
"-print | xargs -I {} bash -c \"rfcp {} .oO[datadir]Oo."
"/.oO[name]Oo..Comparison_common"+name+"_Images/CrossTalk/\" \n")

repMap["runComparisonScripts"] += \
("find . -maxdepth 1 -name "
Expand Down