|
|
|||
File indexing completed on 2026-04-10 07:50:28
0001 #include <iostream> 0002 #include <iomanip> 0003 0004 #include "S4RandomMonitor.h" 0005 0006 0007 int main(int argc, char** argv) 0008 { 0009 S4RandomMonitor mon ; 0010 0011 for(int i=0 ; i < 10 ; i++) 0012 { 0013 double u = G4UniformRand() ; 0014 std::cout << std::setw(10) << std::setprecision(5) << u << std::endl ; 0015 } 0016 0017 0018 return 0 ; 0019 } 0020 /** 0021 0022 0.13049 0023 0.61775 0024 0.99595 0025 0.4959 0026 0.11292 0027 0.28987 0028 0.47304 0029 0.83762 0030 0.35936 0031 0.92694 0032 0033 0034 U4RandomMonitor::flat 0.13049 0035 0.13049 0036 U4RandomMonitor::flat 0.617751 0037 0.61775 0038 U4RandomMonitor::flat 0.995947 0039 0.99595 0040 U4RandomMonitor::flat 0.495902 0041 0.4959 0042 U4RandomMonitor::flat 0.112917 0043 0.11292 0044 U4RandomMonitor::flat 0.289871 0045 0.28987 0046 U4RandomMonitor::flat 0.473044 0047 0.47304 0048 U4RandomMonitor::flat 0.837619 0049 0.83762 0050 U4RandomMonitor::flat 0.359356 0051 0.35936 0052 U4RandomMonitor::flat 0.926938 0053 0.92694 0054 0055 0056 **/
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|