Examples of XRayTransport3


Examples of gov.nist.microanalysis.NISTMonte.Gen3.XRayTransport3

        Map<Integer, XRayTransport3> characFluoMap = new HashMap<>();
        Map<Integer, XRayTransport3> bremssFluoMap = new HashMap<>();

        Integer hashCode;
        double[] detPosition;
        XRayTransport3 charac, bremss, characFluo, bremssFluo;
        for (PhotonDetector det : phDets) {
            detPosition = det.getDetectorPosition();
            hashCode = Arrays.hashCode(detPosition);

            charac = characMap.get(hashCode);
View Full Code Here

Examples of gov.nist.microanalysis.NISTMonte.Gen3.XRayTransport3

    public void setUp() throws Exception {
        det = new PhiZDetector(getDetectorPosition(), 100);
        resultsFile = createTempFile("h5");

        MonteCarloSS mcss = getMonteCarloSS();
        XRayTransport3 charac = getCharacteristicTransport(mcss);
        XRayTransport3 bremss = getBremmstrahlungTransport(mcss);
        XRayTransport3 characFluo =
                getCharacteristicFluoTransport(mcss, charac);
        XRayTransport3 bremssFluo =
                getBremmstrahlungFluoTransport(mcss, bremss);
        det.setup(mcss, charac, bremss, characFluo, bremssFluo);

        mcss.runTrajectory();
    }
View Full Code Here

Examples of gov.nist.microanalysis.NISTMonte.Gen3.XRayTransport3

    public void setUp() throws Exception {
        det = new PhotonIntensityDetector(getDetectorPosition());
        resultsFile = createTempFile("zip");

        MonteCarloSS mcss = getMonteCarloSS();
        XRayTransport3 charac = getCharacteristicTransport(mcss);
        XRayTransport3 bremss = getBremmstrahlungTransport(mcss);
        XRayTransport3 characFluo =
                getCharacteristicFluoTransport(mcss, charac);
        XRayTransport3 bremssFluo =
                getBremmstrahlungFluoTransport(mcss, bremss);
        det.setup(mcss, charac, bremss, characFluo, bremssFluo);

        mcss.runTrajectory();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.