Package gov.nist.microanalysis.NISTMonte.Gen3

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


    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

Related Classes of gov.nist.microanalysis.NISTMonte.Gen3.XRayTransport3

Copyright © 2018 www.massapicom. 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.