This file contains hidden or 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
| ss << std::setprecision(10) | |
| << std::scientific | |
| << std::uppercase | |
| << "\t" << hepeup.IDUP[line] | |
| << "\t" << hepeup.ISTUP[line] | |
| << "\t" << hepeup.MOTHUP[line].first | |
| << "\t" << hepeup.MOTHUP[line].second | |
| << "\t" << hepeup.ICOLUP[line].first | |
| << "\t" << hepeup.ICOLUP[line].second | |
| << "\t" << hepeup.PUP[line][0] |
This file contains hidden or 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
| get_cmake_property(_variableNames VARIABLES) | |
| foreach (_variableName ${_variableNames}) | |
| message(STATUS "${_variableName}=${${_variableName}}") | |
| endforeach() |
This file contains hidden or 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
| <!-- userinfo defs --> | |
| <auxiliary auxtype="DetectorID" auxvalue="DefaultID"> | |
| <auxiliary auxtype="IDField" auxvalue="subdet"> | |
| <auxiliary auxtype="StartBit" auxvalue="0"/> | |
| <auxiliary auxtype="EndBit" auxvalue="3"/> | |
| </auxiliary> | |
| <auxiliary auxtype="IDField" auxvalue="layer"> | |
| <auxiliary auxtype="StartBit" auxvalue="4"/> | |
| <auxiliary auxtype="EndBit" auxvalue="11"/> | |
| </auxiliary> |
This file contains hidden or 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
| import multiprocessing | |
| from multiprocessing import Pool | |
| def power(x): | |
| if x==0: | |
| exponent=.5 | |
| elif x==1: | |