From owner-svn-ports-head@freebsd.org Wed Feb 20 22:34:24 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 998E514DEF75; Wed, 20 Feb 2019 22:34:24 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AB5472321; Wed, 20 Feb 2019 22:34:24 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B0ACC1C5; Wed, 20 Feb 2019 22:34:24 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1KMYO2P052025; Wed, 20 Feb 2019 22:34:24 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1KMYNBA052023; Wed, 20 Feb 2019 22:34:23 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201902202234.x1KMYNBA052023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 20 Feb 2019 22:34:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493473 - head/science/mcstas-comps X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/science/mcstas-comps X-SVN-Commit-Revision: 493473 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4AB5472321 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.989,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2019 22:34:25 -0000 Author: kai Date: Wed Feb 20 22:34:23 2019 New Revision: 493473 URL: https://svnweb.freebsd.org/changeset/ports/493473 Log: science/mcstas-comps: Update to 2.5 and unbreak While I'm here: * Add post-install target to strip binary files and create symbolic links to ${PREFIX}/bin (derived from related port science/mcstas to keep in sync) * Add shebang fix for sasview_generator.py Changelog that lists the changes since 2.2a: http://www.mcstas.org/download/CHANGES_McStas PR: 234590 Submitted by: Erik B. Knudsen (maintainer) Reviewed by: tcberner (mentor) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19228 Modified: head/science/mcstas-comps/Makefile head/science/mcstas-comps/distinfo head/science/mcstas-comps/pkg-plist Modified: head/science/mcstas-comps/Makefile ============================================================================== --- head/science/mcstas-comps/Makefile Wed Feb 20 22:10:54 2019 (r493472) +++ head/science/mcstas-comps/Makefile Wed Feb 20 22:34:23 2019 (r493473) @@ -2,26 +2,29 @@ # $FreeBSD$ PORTNAME= mcstas-comps -PORTVERSION= 2.2a +PORTVERSION= 2.5 CATEGORIES= science -MASTER_SITES= http://download.mcstas.org/mcstas-${PORTVERSION}/unix/McStas-${PORTVERSION}-UNIX-src/ -DISTNAME= mcstas-comps-${PORTVERSION}-src +MASTER_SITES= http://download.mcstas.org/${PORTNAME:C/-comps\$//}-${PORTVERSION}/unix/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= erkn@fysik.dtu.dk COMMENT= Component Library for the McStas neutron ray tracing package LICENSE= GPLv2 -BROKEN= missing RUN_DEPENDS - RUN_DEPENDS= mcstas:science/mcstas -USES= cmake -# Apparently cmake does not generate an install/strip target if nothing -# is supposed to be stripped, so override the cmake-default install -# target of install/strip by resetting STRIP -STRIP= #none -CMAKE_ARGS= "-Denable_mcstas=1" -PLIST_SUB+= PORTVERSION=${PORTVERSION} +USES= cmake:noninja fortran shebangfix + +SHEBANG_FILES= samples/sasview_generator.py +PLIST_SUB= PORTVERSION=${PORTVERSION} + +MCEXECS= cif2hkl mcpl2ssw mcpltool ssw2mcpl + +post-install: +.for e in ${MCEXECS} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/mcstas/${PORTVERSION}/bin/${e} + ${RLN} ${STAGEDIR}${PREFIX}/mcstas/${PORTVERSION}/bin/${e} ${STAGEDIR}${PREFIX}/bin/${e} +.endfor .include Modified: head/science/mcstas-comps/distinfo ============================================================================== --- head/science/mcstas-comps/distinfo Wed Feb 20 22:10:54 2019 (r493472) +++ head/science/mcstas-comps/distinfo Wed Feb 20 22:34:23 2019 (r493473) @@ -1,2 +1,3 @@ -SHA256 (mcstas-comps-2.2a-src.tar.gz) = 0a15a73c2bb280847c4bf6303e197b167fdbccef08739d4fdc60c762852c610f -SIZE (mcstas-comps-2.2a-src.tar.gz) = 32227843 +TIMESTAMP = 1545402120 +SHA256 (mcstas-comps-2.5-src.tar.gz) = b6b70241bb8cbcde6e19da9eb29153b5af283dfe615ac2d212c1c78b98f486e9 +SIZE (mcstas-comps-2.5-src.tar.gz) = 68594258 Modified: head/science/mcstas-comps/pkg-plist ============================================================================== --- head/science/mcstas-comps/pkg-plist Wed Feb 20 22:10:54 2019 (r493472) +++ head/science/mcstas-comps/pkg-plist Wed Feb 20 22:34:23 2019 (r493473) @@ -1,12 +1,24 @@ +bin/cif2hkl +bin/mcpl2ssw +bin/mcpltool +bin/ssw2mcpl +mcstas/%%PORTVERSION%%/NOMENCLATURE +mcstas/%%PORTVERSION%%/README +mcstas/%%PORTVERSION%%/bin/cif2hkl +mcstas/%%PORTVERSION%%/bin/mcpl2ssw +mcstas/%%PORTVERSION%%/bin/mcpltool +mcstas/%%PORTVERSION%%/bin/ssw2mcpl mcstas/%%PORTVERSION%%/contrib/Al_window.comp -mcstas/%%PORTVERSION%%/contrib/Analyser_ideal.comp mcstas/%%PORTVERSION%%/contrib/CavitiesIn.comp mcstas/%%PORTVERSION%%/contrib/CavitiesOut.comp mcstas/%%PORTVERSION%%/contrib/Collimator_ROC.comp +mcstas/%%PORTVERSION%%/contrib/E_4PI.comp mcstas/%%PORTVERSION%%/contrib/Elliptic_guide_gravity.comp mcstas/%%PORTVERSION%%/contrib/Exact_radial_coll.comp mcstas/%%PORTVERSION%%/contrib/FermiChopper_ILL.comp +mcstas/%%PORTVERSION%%/contrib/Fermi_chop2a.comp mcstas/%%PORTVERSION%%/contrib/Filter_graphite.comp +mcstas/%%PORTVERSION%%/contrib/Foil_flipper_magnet.comp mcstas/%%PORTVERSION%%/contrib/Gas_tables/BinBF3.table mcstas/%%PORTVERSION%%/contrib/Gas_tables/BinCF4.table mcstas/%%PORTVERSION%%/contrib/Gas_tables/He3inAr.table @@ -24,7 +36,10 @@ mcstas/%%PORTVERSION%%/contrib/Guide_curved.comp mcstas/%%PORTVERSION%%/contrib/Guide_four_side.comp mcstas/%%PORTVERSION%%/contrib/Guide_four_side_10_shells.comp mcstas/%%PORTVERSION%%/contrib/Guide_four_side_2_shells.comp +mcstas/%%PORTVERSION%%/contrib/Guide_gravity_psd.comp mcstas/%%PORTVERSION%%/contrib/Guide_honeycomb.comp +mcstas/%%PORTVERSION%%/contrib/Guide_m.comp +mcstas/%%PORTVERSION%%/contrib/Guide_multichannel.comp mcstas/%%PORTVERSION%%/contrib/He3_cell.comp mcstas/%%PORTVERSION%%/contrib/ISIS_moderator.comp mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1.ch4 @@ -45,6 +60,23 @@ mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1.surf mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1.sxd mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1.tosca mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1.water +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N01_Sandals.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N02_Prisma.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N03_Surf.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N04_Crisp.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N05_Loq.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N06_Iris.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N07_Polaris.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N08_Tosca.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_N09_Het.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S01_Maps.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S02_Vesuvio.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S03_Sxd.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S04_Merlin.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S06_Mari.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S07_Gem.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S08_Hrpd.mcstas +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS1_S09_Pearl.mcstas mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.broad mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.e1 mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.e2 @@ -57,6 +89,7 @@ mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.e8 mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.e9 mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.groove mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.hydrogen +mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.imat mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.narrow mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.w1 mcstas/%%PORTVERSION%%/contrib/ISIS_tables/TS2.w2 @@ -74,13 +107,14 @@ mcstas/%%PORTVERSION%%/contrib/Mirror_Elliptic.comp mcstas/%%PORTVERSION%%/contrib/Mirror_Elliptic_Bispectral.comp mcstas/%%PORTVERSION%%/contrib/Mirror_Parabolic.comp mcstas/%%PORTVERSION%%/contrib/Monochromator_2foc.comp +mcstas/%%PORTVERSION%%/contrib/MultiDiskChopper.comp mcstas/%%PORTVERSION%%/contrib/Multilayer_Sample.comp -mcstas/%%PORTVERSION%%/contrib/Neutronics/runscript.sh -mcstas/%%PORTVERSION%%/contrib/Neutronics/subs.f -mcstas/%%PORTVERSION%%/contrib/Neutronics/testSSR -mcstas/%%PORTVERSION%%/contrib/Neutronics/testSSW +mcstas/%%PORTVERSION%%/contrib/NCrystal_sample.comp +mcstas/%%PORTVERSION%%/contrib/NPI_tof_dhkl_detector.comp +mcstas/%%PORTVERSION%%/contrib/NPI_tof_theta_monitor.comp mcstas/%%PORTVERSION%%/contrib/PSD_Detector.comp mcstas/%%PORTVERSION%%/contrib/PSD_monitor_rad.comp +mcstas/%%PORTVERSION%%/contrib/PerfectCrystal.comp mcstas/%%PORTVERSION%%/contrib/Pol_bender_tapering.comp mcstas/%%PORTVERSION%%/contrib/Pol_pi_2_rotator.comp mcstas/%%PORTVERSION%%/contrib/Pol_triafield.comp @@ -105,13 +139,19 @@ mcstas/%%PORTVERSION%%/contrib/SANS_benchmark2.comp mcstas/%%PORTVERSION%%/contrib/SNS_source.comp mcstas/%%PORTVERSION%%/contrib/SNS_source_analytic.comp mcstas/%%PORTVERSION%%/contrib/Sample_nxs.comp +mcstas/%%PORTVERSION%%/contrib/Saphire_Filter.comp mcstas/%%PORTVERSION%%/contrib/SiC.comp +mcstas/%%PORTVERSION%%/contrib/Single_crystal_inelastic.comp mcstas/%%PORTVERSION%%/contrib/Source_gen4.comp mcstas/%%PORTVERSION%%/contrib/Source_multi_surfaces.comp +mcstas/%%PORTVERSION%%/contrib/Spherical_Backscattering_Analyser.comp +mcstas/%%PORTVERSION%%/contrib/Spot_sample.comp mcstas/%%PORTVERSION%%/contrib/StatisticalChopper.comp mcstas/%%PORTVERSION%%/contrib/StatisticalChopper_Monitor.comp mcstas/%%PORTVERSION%%/contrib/TOFSANSdet.comp mcstas/%%PORTVERSION%%/contrib/Transmission_polarisatorABSnT.comp +mcstas/%%PORTVERSION%%/contrib/Vertical_T0a.comp +mcstas/%%PORTVERSION%%/contrib/ViewModISIS.comp mcstas/%%PORTVERSION%%/contrib/Virtual_mcnp_input.comp mcstas/%%PORTVERSION%%/contrib/Virtual_mcnp_output.comp mcstas/%%PORTVERSION%%/contrib/Virtual_mcnp_ss_input.comp @@ -121,20 +161,46 @@ mcstas/%%PORTVERSION%%/contrib/Virtual_tripoli4_output mcstas/%%PORTVERSION%%/contrib/doc/ISISdoc.pdf mcstas/%%PORTVERSION%%/contrib/doc/ISISdoc.ps mcstas/%%PORTVERSION%%/contrib/multi_pipe.comp +mcstas/%%PORTVERSION%%/contrib/union/Incoherent_process.comp +mcstas/%%PORTVERSION%%/contrib/union/Powder_process.comp +mcstas/%%PORTVERSION%%/contrib/union/Single_crystal_process.comp +mcstas/%%PORTVERSION%%/contrib/union/Template_process.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_box.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_conditional_PSD.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_conditional_standard.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_cylinder.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_1D.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_2DQ.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_2D_kf.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_2D_kf_time.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_2D_space.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_2D_space_time.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_logger_3D_space.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_make_material.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_master.comp +mcstas/%%PORTVERSION%%/contrib/union/Union_sphere.comp mcstas/%%PORTVERSION%%/data/Ag.laz mcstas/%%PORTVERSION%%/data/Al.lau mcstas/%%PORTVERSION%%/data/Al.laz +mcstas/%%PORTVERSION%%/data/Al.nxs mcstas/%%PORTVERSION%%/data/Al2O3_sapphire.lau mcstas/%%PORTVERSION%%/data/Al2O3_sapphire.laz mcstas/%%PORTVERSION%%/data/Al2O3_sapphire.trm +mcstas/%%PORTVERSION%%/data/Ar_liq_coh.sqw +mcstas/%%PORTVERSION%%/data/Ar_liq_inc.sqw mcstas/%%PORTVERSION%%/data/Au.laz mcstas/%%PORTVERSION%%/data/B4C.lau mcstas/%%PORTVERSION%%/data/B4C.laz +mcstas/%%PORTVERSION%%/data/BCC_fake.lau +mcstas/%%PORTVERSION%%/data/BEER_MCB.mcpl +mcstas/%%PORTVERSION%%/data/BEER_MR.mcpl mcstas/%%PORTVERSION%%/data/Ba.laz mcstas/%%PORTVERSION%%/data/Be.laz +mcstas/%%PORTVERSION%%/data/Be.nxs mcstas/%%PORTVERSION%%/data/Be.trm mcstas/%%PORTVERSION%%/data/BeO.lau mcstas/%%PORTVERSION%%/data/BeO.laz +mcstas/%%PORTVERSION%%/data/Benzene_inc_CASTEP_MDANSE2018.sqw mcstas/%%PORTVERSION%%/data/Bi.laz mcstas/%%PORTVERSION%%/data/C60.lau mcstas/%%PORTVERSION%%/data/C_diamond.lau @@ -143,27 +209,42 @@ mcstas/%%PORTVERSION%%/data/C_graphite.lau mcstas/%%PORTVERSION%%/data/C_graphite.laz mcstas/%%PORTVERSION%%/data/CaF2.lau mcstas/%%PORTVERSION%%/data/Cd.laz +mcstas/%%PORTVERSION%%/data/Cementite.nxs mcstas/%%PORTVERSION%%/data/Cr.laz mcstas/%%PORTVERSION%%/data/Cs.laz mcstas/%%PORTVERSION%%/data/Cs_liq_tot.sqw mcstas/%%PORTVERSION%%/data/Cu.laz +mcstas/%%PORTVERSION%%/data/Cu.nxs +mcstas/%%PORTVERSION%%/data/Cu2MnAl.laz mcstas/%%PORTVERSION%%/data/D2O_liq.qSq +mcstas/%%PORTVERSION%%/data/D2O_liq_290_coh.sqw +mcstas/%%PORTVERSION%%/data/D2O_liq_290_inc.sqw mcstas/%%PORTVERSION%%/data/D2O_liq_300_tot.sqw +mcstas/%%PORTVERSION%%/data/D2_liq_20_coh.sqw +mcstas/%%PORTVERSION%%/data/D2_liq_21_tot.sqw +mcstas/%%PORTVERSION%%/data/D2_pow_12_tot.sqw +mcstas/%%PORTVERSION%%/data/Diamond.nxs mcstas/%%PORTVERSION%%/data/Fe.laz +mcstas/%%PORTVERSION%%/data/Fe.nxs mcstas/%%PORTVERSION%%/data/Fe_Gamma.laz +mcstas/%%PORTVERSION%%/data/Fe_gamma.nxs mcstas/%%PORTVERSION%%/data/Ga.laz mcstas/%%PORTVERSION%%/data/Gd.laz mcstas/%%PORTVERSION%%/data/Ge.lau mcstas/%%PORTVERSION%%/data/Ge.laz mcstas/%%PORTVERSION%%/data/Ge_liq_coh.sqw mcstas/%%PORTVERSION%%/data/Ge_liq_inc.sqw +mcstas/%%PORTVERSION%%/data/Guide.off mcstas/%%PORTVERSION%%/data/H2OD2O_liq.qSq mcstas/%%PORTVERSION%%/data/H2O_ice_1h.laz mcstas/%%PORTVERSION%%/data/H2O_liq.qSq +mcstas/%%PORTVERSION%%/data/H2O_liq_290_coh.sqw +mcstas/%%PORTVERSION%%/data/H2O_liq_290_inc.sqw mcstas/%%PORTVERSION%%/data/H2O_liq_300_tot.sqw mcstas/%%PORTVERSION%%/data/HOPG.rfl mcstas/%%PORTVERSION%%/data/HOPG.trm mcstas/%%PORTVERSION%%/data/He4_hcp.laz +mcstas/%%PORTVERSION%%/data/He4_liq_1_coh.sqw mcstas/%%PORTVERSION%%/data/He4_liq_coh.sqw mcstas/%%PORTVERSION%%/data/Hg.laz mcstas/%%PORTVERSION%%/data/I2.laz @@ -172,8 +253,12 @@ mcstas/%%PORTVERSION%%/data/Instructions_new_lau_file. mcstas/%%PORTVERSION%%/data/K.laz mcstas/%%PORTVERSION%%/data/Li.laz mcstas/%%PORTVERSION%%/data/LiF.laz +mcstas/%%PORTVERSION%%/data/Martensite.nxs +mcstas/%%PORTVERSION%%/data/Mg.nxs mcstas/%%PORTVERSION%%/data/Mo.laz +mcstas/%%PORTVERSION%%/data/Na.nxs mcstas/%%PORTVERSION%%/data/Na2Ca3Al2F14.laz +mcstas/%%PORTVERSION%%/data/NaCl.nxs mcstas/%%PORTVERSION%%/data/Nb.laz mcstas/%%PORTVERSION%%/data/Ne_liq_tot.sqw mcstas/%%PORTVERSION%%/data/Ni.laz @@ -193,6 +278,7 @@ mcstas/%%PORTVERSION%%/data/Se_alpha.laz mcstas/%%PORTVERSION%%/data/Se_beta.laz mcstas/%%PORTVERSION%%/data/Si.laz mcstas/%%PORTVERSION%%/data/SiO2_cristobalite.lau +mcstas/%%PORTVERSION%%/data/SiO2_hex.nxs mcstas/%%PORTVERSION%%/data/SiO2_liq.qSq mcstas/%%PORTVERSION%%/data/SiO2_quartza.lau mcstas/%%PORTVERSION%%/data/SiO2_quartza.laz @@ -203,11 +289,14 @@ mcstas/%%PORTVERSION%%/data/Sn_beta.laz mcstas/%%PORTVERSION%%/data/Ti.laz mcstas/%%PORTVERSION%%/data/TiO2_rutile.lau mcstas/%%PORTVERSION%%/data/Tl.laz +mcstas/%%PORTVERSION%%/data/UO2.laz mcstas/%%PORTVERSION%%/data/V.laz +mcstas/%%PORTVERSION%%/data/V.nxs mcstas/%%PORTVERSION%%/data/Y2O3.laz mcstas/%%PORTVERSION%%/data/Y3Fe5O12_YIG.laz mcstas/%%PORTVERSION%%/data/YBaCuO.lau mcstas/%%PORTVERSION%%/data/Zn.laz +mcstas/%%PORTVERSION%%/data/Zn.nxs mcstas/%%PORTVERSION%%/data/Zr.laz mcstas/%%PORTVERSION%%/data/a1Gw2-11-f5_fit_fit.dat mcstas/%%PORTVERSION%%/data/a1Gw2-14-f5_fit_fit.dat @@ -220,12 +309,19 @@ mcstas/%%PORTVERSION%%/data/aspirin.lau mcstas/%%PORTVERSION%%/data/b2_l220_tp80_cw1.18mm.dat mcstas/%%PORTVERSION%%/data/bender_r_ideal.dat mcstas/%%PORTVERSION%%/data/cube.off +mcstas/%%PORTVERSION%%/data/duplex.laz +mcstas/%%PORTVERSION%%/data/example.sqw4 mcstas/%%PORTVERSION%%/data/flipfield.dat +mcstas/%%PORTVERSION%%/data/kink.off mcstas/%%PORTVERSION%%/data/leucine.lau mcstas/%%PORTVERSION%%/data/rot4m_sp_fit_fit.dat mcstas/%%PORTVERSION%%/data/socket.off mcstas/%%PORTVERSION%%/data/source_sct091_tu_02_1.dat +mcstas/%%PORTVERSION%%/data/source_sct091_tu_11_1.dat mcstas/%%PORTVERSION%%/data/source_sct21a_td_05_1.dat +mcstas/%%PORTVERSION%%/data/source_sct41a_bd_14_1.dat +mcstas/%%PORTVERSION%%/data/source_sct521_bu_08_1.dat +mcstas/%%PORTVERSION%%/data/source_sct521_bu_17_1.dat mcstas/%%PORTVERSION%%/data/supermirror_m2.rfl mcstas/%%PORTVERSION%%/data/supermirror_m3.rfl mcstas/%%PORTVERSION%%/data/ver5tf2mm_sp_fit_fit.dat @@ -238,13 +334,24 @@ mcstas/%%PORTVERSION%%/editors/mcstas2.lang mcstas/%%PORTVERSION%%/editors/mcstas3.lang mcstas/%%PORTVERSION%%/editors/nedit mcstas/%%PORTVERSION%%/examples/BNL_H8.instr +mcstas/%%PORTVERSION%%/examples/BTsimple.instr +mcstas/%%PORTVERSION%%/examples/Demo_shape_primitives.instr mcstas/%%PORTVERSION%%/examples/ESS_2001_bispectral.instr +mcstas/%%PORTVERSION%%/examples/ESS_2015_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_BEER_MCPL.instr mcstas/%%PORTVERSION%%/examples/ESS_Brilliance_2001.instr mcstas/%%PORTVERSION%%/examples/ESS_Brilliance_2013.instr mcstas/%%PORTVERSION%%/examples/ESS_Brilliance_2014.instr mcstas/%%PORTVERSION%%/examples/ESS_Brilliance_2015.instr mcstas/%%PORTVERSION%%/examples/ESS_Brilliance_TDR.instr mcstas/%%PORTVERSION%%/examples/ESS_IN5_reprate.instr +mcstas/%%PORTVERSION%%/examples/ESS_Testbeamline_HZB_V20.instr +mcstas/%%PORTVERSION%%/examples/ESS_butterfly_Guide_curved_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_butterfly_MCPL_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_butterfly_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_butterfly_tfocus_NOFOCUS_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_butterfly_tfocus_test.instr +mcstas/%%PORTVERSION%%/examples/ESS_mcpl2hist.instr mcstas/%%PORTVERSION%%/examples/FZJ_BenchmarkSfin2.instr mcstas/%%PORTVERSION%%/examples/FZJ_KWS2_Lens.instr mcstas/%%PORTVERSION%%/examples/FZJ_SANS_KWS2_AnySample.instr @@ -260,9 +367,11 @@ mcstas/%%PORTVERSION%%/examples/ILL_H10_IN8.instr mcstas/%%PORTVERSION%%/examples/ILL_H113.instr mcstas/%%PORTVERSION%%/examples/ILL_H13_IN20.instr mcstas/%%PORTVERSION%%/examples/ILL_H142.instr +mcstas/%%PORTVERSION%%/examples/ILL_H142_D33.instr mcstas/%%PORTVERSION%%/examples/ILL_H142_IN12.instr mcstas/%%PORTVERSION%%/examples/ILL_H143_LADI.instr mcstas/%%PORTVERSION%%/examples/ILL_H15.instr +mcstas/%%PORTVERSION%%/examples/ILL_H15_D11.instr mcstas/%%PORTVERSION%%/examples/ILL_H15_IN6.instr mcstas/%%PORTVERSION%%/examples/ILL_H16.instr mcstas/%%PORTVERSION%%/examples/ILL_H16_IN5.instr @@ -275,26 +384,38 @@ mcstas/%%PORTVERSION%%/examples/ILL_H22_VIVALDI.instr mcstas/%%PORTVERSION%%/examples/ILL_H24.instr mcstas/%%PORTVERSION%%/examples/ILL_H25.instr mcstas/%%PORTVERSION%%/examples/ILL_H25_IN22.instr +mcstas/%%PORTVERSION%%/examples/ILL_H5.instr mcstas/%%PORTVERSION%%/examples/ILL_H512_D22.instr mcstas/%%PORTVERSION%%/examples/ILL_H53.instr mcstas/%%PORTVERSION%%/examples/ILL_H53_D16.instr mcstas/%%PORTVERSION%%/examples/ILL_H53_IN14.instr +mcstas/%%PORTVERSION%%/examples/ILL_H5_new.instr mcstas/%%PORTVERSION%%/examples/ILL_H8_IN1.instr mcstas/%%PORTVERSION%%/examples/ILL_IN13.instr mcstas/%%PORTVERSION%%/examples/ILL_IN4.instr mcstas/%%PORTVERSION%%/examples/ILL_IN5.instr mcstas/%%PORTVERSION%%/examples/ILL_IN5_Mantid.instr +mcstas/%%PORTVERSION%%/examples/ILL_IN5_Spots.instr mcstas/%%PORTVERSION%%/examples/ILL_IN6.instr mcstas/%%PORTVERSION%%/examples/ILL_Lagrange.instr mcstas/%%PORTVERSION%%/examples/ISIS_CRISP.instr mcstas/%%PORTVERSION%%/examples/ISIS_GEM.instr mcstas/%%PORTVERSION%%/examples/ISIS_HET.instr +mcstas/%%PORTVERSION%%/examples/ISIS_IMAT.instr +mcstas/%%PORTVERSION%%/examples/ISIS_MERLIN.instr +mcstas/%%PORTVERSION%%/examples/ISIS_OSIRIS.instr mcstas/%%PORTVERSION%%/examples/ISIS_Prisma2.instr mcstas/%%PORTVERSION%%/examples/ISIS_SANS2d.instr +mcstas/%%PORTVERSION%%/examples/ISIS_SANS2d_Mantid.instr +mcstas/%%PORTVERSION%%/examples/ISIS_TOSCA_preupgrade.instr +mcstas/%%PORTVERSION%%/examples/ISIS_TOSCA_preupgrade_Mantid.instr mcstas/%%PORTVERSION%%/examples/ISIS_TS1_Brilliance.instr mcstas/%%PORTVERSION%%/examples/ISIS_TS2_Brilliance.instr mcstas/%%PORTVERSION%%/examples/ISIS_test.instr +mcstas/%%PORTVERSION%%/examples/LLB_6T2.instr +mcstas/%%PORTVERSION%%/examples/MCPL2hist.instr mcstas/%%PORTVERSION%%/examples/Mezei_SNS_decoupled_poisoned.instr +mcstas/%%PORTVERSION%%/examples/NCrystal_example_mcstas.instr mcstas/%%PORTVERSION%%/examples/PSI_DMC.instr mcstas/%%PORTVERSION%%/examples/PSI_Focus.instr mcstas/%%PORTVERSION%%/examples/RITA-II.instr @@ -304,9 +425,14 @@ mcstas/%%PORTVERSION%%/examples/RTP_Laue.instr mcstas/%%PORTVERSION%%/examples/RTP_NeutronRadiography.instr mcstas/%%PORTVERSION%%/examples/RTP_SANS.instr mcstas/%%PORTVERSION%%/examples/Reflectometer.instr +mcstas/%%PORTVERSION%%/examples/SAFARI_MPISI.instr +mcstas/%%PORTVERSION%%/examples/SAFARI_PITSI.instr mcstas/%%PORTVERSION%%/examples/SEMSANS_instrument.instr mcstas/%%PORTVERSION%%/examples/SE_example.instr mcstas/%%PORTVERSION%%/examples/SE_example2.instr +mcstas/%%PORTVERSION%%/examples/SNS_ARCS.instr +mcstas/%%PORTVERSION%%/examples/SNS_ARCS_Mantid.instr +mcstas/%%PORTVERSION%%/examples/SNS_BASIS.instr mcstas/%%PORTVERSION%%/examples/SNS_analytic_test.instr mcstas/%%PORTVERSION%%/examples/SNS_test.instr mcstas/%%PORTVERSION%%/examples/Samples_Incoherent.instr @@ -316,26 +442,34 @@ mcstas/%%PORTVERSION%%/examples/Samples_Phonon.instr mcstas/%%PORTVERSION%%/examples/Samples_vanadium.instr mcstas/%%PORTVERSION%%/examples/TestSANS.instr mcstas/%%PORTVERSION%%/examples/Test_Collimator_Radial.instr +mcstas/%%PORTVERSION%%/examples/Test_DiskChoppers.instr mcstas/%%PORTVERSION%%/examples/Test_Fermi.instr mcstas/%%PORTVERSION%%/examples/Test_FocalisationMirrors.instr mcstas/%%PORTVERSION%%/examples/Test_Guides.instr mcstas/%%PORTVERSION%%/examples/Test_Guides_Curved.instr mcstas/%%PORTVERSION%%/examples/Test_Jump_Iterate.instr mcstas/%%PORTVERSION%%/examples/Test_Lens.instr +mcstas/%%PORTVERSION%%/examples/Test_MCPL_input.instr +mcstas/%%PORTVERSION%%/examples/Test_MCPL_output.instr mcstas/%%PORTVERSION%%/examples/Test_Magnetic_Constant.instr mcstas/%%PORTVERSION%%/examples/Test_Magnetic_Majorana.instr mcstas/%%PORTVERSION%%/examples/Test_Magnetic_Rotation.instr mcstas/%%PORTVERSION%%/examples/Test_Magnetic_Userdefined.instr +mcstas/%%PORTVERSION%%/examples/Test_Magnon_bcc_2D.instr +mcstas/%%PORTVERSION%%/examples/Test_Magnon_bcc_TAS.instr mcstas/%%PORTVERSION%%/examples/Test_Monitor_Sqw.instr mcstas/%%PORTVERSION%%/examples/Test_Monochromators.instr mcstas/%%PORTVERSION%%/examples/Test_PSD_Detector.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_Bender.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_Bender_Vs_Guide_Curved.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_Guide_Vmirror.instr +mcstas/%%PORTVERSION%%/examples/Test_Pol_Guide_mirror.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_MSF.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_Mirror.instr +mcstas/%%PORTVERSION%%/examples/Test_Pol_SF_ideal.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_Set.instr mcstas/%%PORTVERSION%%/examples/Test_Pol_TripleAxis.instr +mcstas/%%PORTVERSION%%/examples/Test_PowderN_Res.instr mcstas/%%PORTVERSION%%/examples/Test_PreMonitor_nD.instr mcstas/%%PORTVERSION%%/examples/Test_SSR_SSW.instr mcstas/%%PORTVERSION%%/examples/Test_SSR_SSW_Guide.instr @@ -345,11 +479,30 @@ mcstas/%%PORTVERSION%%/examples/Test_Scatter_log_losse mcstas/%%PORTVERSION%%/examples/Test_Scatter_log_mvalues.instr mcstas/%%PORTVERSION%%/examples/Test_Scatter_log_ssw_mcnp.instr mcstas/%%PORTVERSION%%/examples/Test_Selectors.instr +mcstas/%%PORTVERSION%%/examples/Test_Single_crystal_inelastic.instr mcstas/%%PORTVERSION%%/examples/Test_Sources.instr mcstas/%%PORTVERSION%%/examples/Test_StatisticalChopper.instr +mcstas/%%PORTVERSION%%/examples/Test_focus.instr mcstas/%%PORTVERSION%%/examples/Test_pol_tabled.instr mcstas/%%PORTVERSION%%/examples/Test_shellguides.instr mcstas/%%PORTVERSION%%/examples/Tomography.instr +mcstas/%%PORTVERSION%%/examples/Union_demonstration.instr +mcstas/%%PORTVERSION%%/examples/Union_demonstration_absorption_image.instr +mcstas/%%PORTVERSION%%/examples/Union_external_component.instr +mcstas/%%PORTVERSION%%/examples/Union_external_component_test.instr +mcstas/%%PORTVERSION%%/examples/Union_incoherent_validation.instr +mcstas/%%PORTVERSION%%/examples/Union_laue_camera.instr +mcstas/%%PORTVERSION%%/examples/Union_manual_example.instr +mcstas/%%PORTVERSION%%/examples/Union_powder_validation.instr +mcstas/%%PORTVERSION%%/examples/Union_sample_picture_replica.instr +mcstas/%%PORTVERSION%%/examples/Union_single_crystal_validation.instr +mcstas/%%PORTVERSION%%/examples/Union_tagging_demo.instr +mcstas/%%PORTVERSION%%/examples/Union_test_absorption.instr +mcstas/%%PORTVERSION%%/examples/Union_test_absorption_image.instr +mcstas/%%PORTVERSION%%/examples/Union_test_box.instr +mcstas/%%PORTVERSION%%/examples/Union_test_mask.instr +mcstas/%%PORTVERSION%%/examples/Union_test_powder.instr +mcstas/%%PORTVERSION%%/examples/Union_time_of_flight.instr mcstas/%%PORTVERSION%%/examples/Vin_test.instr mcstas/%%PORTVERSION%%/examples/Vout_test.instr mcstas/%%PORTVERSION%%/examples/h8_test_legacy.instr @@ -364,11 +517,52 @@ mcstas/%%PORTVERSION%%/examples/template.instr mcstas/%%PORTVERSION%%/examples/templateDIFF.instr mcstas/%%PORTVERSION%%/examples/templateLaue.instr mcstas/%%PORTVERSION%%/examples/templateNMX.instr +mcstas/%%PORTVERSION%%/examples/templateNMX_TOF.instr mcstas/%%PORTVERSION%%/examples/templateSANS.instr mcstas/%%PORTVERSION%%/examples/templateSANS_Mantid.instr +mcstas/%%PORTVERSION%%/examples/templateSasView.instr +mcstas/%%PORTVERSION%%/examples/templateSasView_Mantid.instr mcstas/%%PORTVERSION%%/examples/templateTAS.instr mcstas/%%PORTVERSION%%/examples/templateTOF.instr +mcstas/%%PORTVERSION%%/examples/templateVanadiumMultipleScat_Mantid.instr +mcstas/%%PORTVERSION%%/examples/template_simple.instr +mcstas/%%PORTVERSION%%/libs/cif2hkl/cif2hkl.F90 +mcstas/%%PORTVERSION%%/libs/libnxs/Doxyfile +mcstas/%%PORTVERSION%%/libs/libnxs/README +mcstas/%%PORTVERSION%%/libs/libnxs/compile.bat +mcstas/%%PORTVERSION%%/libs/libnxs/libnxs.a +mcstas/%%PORTVERSION%%/libs/libnxs/nxs.c +mcstas/%%PORTVERSION%%/libs/libnxs/nxs.h +mcstas/%%PORTVERSION%%/libs/libnxs/nxs.pro +mcstas/%%PORTVERSION%%/libs/libnxs/sgclib.c +mcstas/%%PORTVERSION%%/libs/libnxs/sgfind.c +mcstas/%%PORTVERSION%%/libs/libnxs/sghkl.c +mcstas/%%PORTVERSION%%/libs/libnxs/sginfo.h +mcstas/%%PORTVERSION%%/libs/libnxs/sgio.c +mcstas/%%PORTVERSION%%/libs/libnxs/sgsi.c +mcstas/%%PORTVERSION%%/libs/mcpl/README.TXT +mcstas/%%PORTVERSION%%/libs/mcpl/TODO.TXT +mcstas/%%PORTVERSION%%/libs/mcpl/compile.bat +mcstas/%%PORTVERSION%%/libs/mcpl/examplesession.txt +mcstas/%%PORTVERSION%%/libs/mcpl/libmcpl.a +mcstas/%%PORTVERSION%%/libs/mcpl/mcpl.c +mcstas/%%PORTVERSION%%/libs/mcpl/mcpl.h +mcstas/%%PORTVERSION%%/libs/mcpl/mcpl2ssw.c +mcstas/%%PORTVERSION%%/libs/mcpl/readexample.c +mcstas/%%PORTVERSION%%/libs/mcpl/ssw2mcpl.c +mcstas/%%PORTVERSION%%/libs/mcpl/synts.mcpl +mcstas/%%PORTVERSION%%/libs/mcpl/tool.c +mcstas/%%PORTVERSION%%/libs/mcpl/voutput.mcpl +mcstas/%%PORTVERSION%%/libs/mcpl/writeexample.c +mcstas/%%PORTVERSION%%/libs/neutronics/compile.bat +mcstas/%%PORTVERSION%%/libs/neutronics/libneutronics.a +mcstas/%%PORTVERSION%%/libs/neutronics/neutronics-subs.f +mcstas/%%PORTVERSION%%/libs/neutronics/runscript.sh +mcstas/%%PORTVERSION%%/libs/neutronics/testSSR +mcstas/%%PORTVERSION%%/libs/neutronics/testSSW mcstas/%%PORTVERSION%%/misc/Beam_spy.comp +mcstas/%%PORTVERSION%%/misc/MCPL_input.comp +mcstas/%%PORTVERSION%%/misc/MCPL_output.comp mcstas/%%PORTVERSION%%/misc/PolAnalyser_ideal.comp mcstas/%%PORTVERSION%%/misc/Progress_bar.comp mcstas/%%PORTVERSION%%/misc/Scatter_log_iterator.comp @@ -395,6 +589,7 @@ mcstas/%%PORTVERSION%%/monitors/Monitor_nD.comp mcstas/%%PORTVERSION%%/monitors/PSD_TOF_monitor.comp mcstas/%%PORTVERSION%%/monitors/PSD_monitor.comp mcstas/%%PORTVERSION%%/monitors/PSD_monitor_4PI.comp +mcstas/%%PORTVERSION%%/monitors/PSD_monitor_TOF.comp mcstas/%%PORTVERSION%%/monitors/PSD_monitor_psf.comp mcstas/%%PORTVERSION%%/monitors/PSD_monitor_psf_eff.comp mcstas/%%PORTVERSION%%/monitors/PSDcyl_monitor.comp @@ -404,6 +599,7 @@ mcstas/%%PORTVERSION%%/monitors/PolLambda_monitor.comp mcstas/%%PORTVERSION%%/monitors/Pol_monitor.comp mcstas/%%PORTVERSION%%/monitors/PreMonitor_nD.comp mcstas/%%PORTVERSION%%/monitors/Res_monitor.comp +mcstas/%%PORTVERSION%%/monitors/Sqq_w_monitor.comp mcstas/%%PORTVERSION%%/monitors/TOF2E_monitor.comp mcstas/%%PORTVERSION%%/monitors/TOF2Q_cylPSD_monitor.comp mcstas/%%PORTVERSION%%/monitors/TOFLambda_monitor.comp @@ -411,9 +607,13 @@ mcstas/%%PORTVERSION%%/monitors/TOF_PSD_monitor_rad.co mcstas/%%PORTVERSION%%/monitors/TOF_cylPSD_monitor.comp mcstas/%%PORTVERSION%%/monitors/TOF_monitor.comp mcstas/%%PORTVERSION%%/monitors/TOFlog_monitor.comp +mcstas/%%PORTVERSION%%/obsolete/Analyser_ideal.comp mcstas/%%PORTVERSION%%/obsolete/ESS_moderator_long.comp mcstas/%%PORTVERSION%%/obsolete/ESS_moderator_long_2001.comp mcstas/%%PORTVERSION%%/obsolete/ESS_moderator_short.comp +mcstas/%%PORTVERSION%%/obsolete/Isotropic_Sqw_legacy.comp +mcstas/%%PORTVERSION%%/obsolete/Pol_simpleBfield.comp +mcstas/%%PORTVERSION%%/obsolete/Pol_simpleBfield_stop.comp mcstas/%%PORTVERSION%%/obsolete/V_sample.comp mcstas/%%PORTVERSION%%/optics/Absorber.comp mcstas/%%PORTVERSION%%/optics/Arm.comp @@ -422,6 +622,7 @@ mcstas/%%PORTVERSION%%/optics/Bender.comp mcstas/%%PORTVERSION%%/optics/Collimator_linear.comp mcstas/%%PORTVERSION%%/optics/Collimator_radial.comp mcstas/%%PORTVERSION%%/optics/Derotator.comp +mcstas/%%PORTVERSION%%/optics/Diaphragm.comp mcstas/%%PORTVERSION%%/optics/DiskChopper.comp mcstas/%%PORTVERSION%%/optics/FermiChopper.comp mcstas/%%PORTVERSION%%/optics/Filter_gen.comp @@ -435,35 +636,84 @@ mcstas/%%PORTVERSION%%/optics/Mirror.comp mcstas/%%PORTVERSION%%/optics/Monochromator_curved.comp mcstas/%%PORTVERSION%%/optics/Monochromator_flat.comp mcstas/%%PORTVERSION%%/optics/Monochromator_pol.comp +mcstas/%%PORTVERSION%%/optics/Pol_Bfield.comp +mcstas/%%PORTVERSION%%/optics/Pol_Bfield_stop.comp +mcstas/%%PORTVERSION%%/optics/Pol_FieldBox.comp +mcstas/%%PORTVERSION%%/optics/Pol_SF_ideal.comp mcstas/%%PORTVERSION%%/optics/Pol_bender.comp mcstas/%%PORTVERSION%%/optics/Pol_constBfield.comp +mcstas/%%PORTVERSION%%/optics/Pol_guide_mirror.comp mcstas/%%PORTVERSION%%/optics/Pol_guide_vmirror.comp mcstas/%%PORTVERSION%%/optics/Pol_mirror.comp -mcstas/%%PORTVERSION%%/optics/Pol_simpleBfield.comp -mcstas/%%PORTVERSION%%/optics/Pol_simpleBfield_stop.comp +mcstas/%%PORTVERSION%%/optics/Refractor.comp mcstas/%%PORTVERSION%%/optics/Rotator.comp mcstas/%%PORTVERSION%%/optics/Selector.comp mcstas/%%PORTVERSION%%/optics/Slit.comp mcstas/%%PORTVERSION%%/optics/V_selector.comp mcstas/%%PORTVERSION%%/optics/Virtual_mcnp_ss_Guide.comp mcstas/%%PORTVERSION%%/optics/Vitess_ChopperFermi.comp +mcstas/%%PORTVERSION%%/revision mcstas/%%PORTVERSION%%/samples/Incoherent.comp mcstas/%%PORTVERSION%%/samples/Isotropic_Sqw.comp +mcstas/%%PORTVERSION%%/samples/Magnon_bcc.comp mcstas/%%PORTVERSION%%/samples/Phonon_simple.comp mcstas/%%PORTVERSION%%/samples/Powder1.comp mcstas/%%PORTVERSION%%/samples/PowderN.comp mcstas/%%PORTVERSION%%/samples/Res_sample.comp mcstas/%%PORTVERSION%%/samples/Sans_spheres.comp +mcstas/%%PORTVERSION%%/samples/SasView_model.comp +mcstas/%%PORTVERSION%%/samples/SasView_model.comp.Template mcstas/%%PORTVERSION%%/samples/Single_crystal.comp mcstas/%%PORTVERSION%%/samples/TOFRes_sample.comp mcstas/%%PORTVERSION%%/samples/Tunneling_sample.comp +mcstas/%%PORTVERSION%%/samples/sasview_generator.py +mcstas/%%PORTVERSION%%/share/ESS_butterfly-geometry.c +mcstas/%%PORTVERSION%%/share/ESS_butterfly-lib.c +mcstas/%%PORTVERSION%%/share/ESS_butterfly-lib.h +mcstas/%%PORTVERSION%%/share/Geometry_functions.c +mcstas/%%PORTVERSION%%/share/Union_functions.c +mcstas/%%PORTVERSION%%/share/Union_initialization.c mcstas/%%PORTVERSION%%/share/chopper_fermi.c mcstas/%%PORTVERSION%%/share/chopper_fermi.h +mcstas/%%PORTVERSION%%/share/docs_sasmodels.html mcstas/%%PORTVERSION%%/share/ess_source-lib.c mcstas/%%PORTVERSION%%/share/ess_source-lib.h mcstas/%%PORTVERSION%%/share/monitor_nd-lib.c mcstas/%%PORTVERSION%%/share/monitor_nd-lib.h +mcstas/%%PORTVERSION%%/share/nxs.h +mcstas/%%PORTVERSION%%/share/sas_HayterMSAsq.c +mcstas/%%PORTVERSION%%/share/sas_barbell.c +mcstas/%%PORTVERSION%%/share/sas_bcc_paracrystal.c +mcstas/%%PORTVERSION%%/share/sas_capped_cylinder.c +mcstas/%%PORTVERSION%%/share/sas_core_shell_cylinder.c +mcstas/%%PORTVERSION%%/share/sas_cylinder.c +mcstas/%%PORTVERSION%%/share/sas_dab.c +mcstas/%%PORTVERSION%%/share/sas_ellipsoid.c +mcstas/%%PORTVERSION%%/share/sas_fcc_paracrystal.c +mcstas/%%PORTVERSION%%/share/sas_flexible_cylinder_ex.c +mcstas/%%PORTVERSION%%/share/sas_gaussian_peak.c +mcstas/%%PORTVERSION%%/share/sas_guinier.c +mcstas/%%PORTVERSION%%/share/sas_hardsphere.c +mcstas/%%PORTVERSION%%/share/sas_hollow_cylinder.c +mcstas/%%PORTVERSION%%/share/sas_lamellar.c +mcstas/%%PORTVERSION%%/share/sas_lamellarCailleHG.c +mcstas/%%PORTVERSION%%/share/sas_lamellarPC.c +mcstas/%%PORTVERSION%%/share/sas_lamellarPS.c +mcstas/%%PORTVERSION%%/share/sas_lamellar_FFHG.c +mcstas/%%PORTVERSION%%/share/sas_linear_pearls.c +mcstas/%%PORTVERSION%%/share/sas_lorentz.c +mcstas/%%PORTVERSION%%/share/sas_mass_fractal.c +mcstas/%%PORTVERSION%%/share/sas_mass_surface_fractal.c +mcstas/%%PORTVERSION%%/share/sas_parallelepiped.c +mcstas/%%PORTVERSION%%/share/sas_pearl_necklace.c +mcstas/%%PORTVERSION%%/share/sas_sphere.c +mcstas/%%PORTVERSION%%/share/sas_star_polymer.c +mcstas/%%PORTVERSION%%/share/sas_stickyhardsphere.c +mcstas/%%PORTVERSION%%/share/sas_triaxial_ellipsoid.c +mcstas/%%PORTVERSION%%/share/sasview_proxy.c +mcstas/%%PORTVERSION%%/share/sginfo.h mcstas/%%PORTVERSION%%/sources/Adapt_check.comp +mcstas/%%PORTVERSION%%/sources/ESS_butterfly.comp mcstas/%%PORTVERSION%%/sources/ESS_moderator.comp mcstas/%%PORTVERSION%%/sources/Moderator.comp mcstas/%%PORTVERSION%%/sources/Monitor_Optimizer.comp @@ -475,19 +725,3 @@ mcstas/%%PORTVERSION%%/sources/Source_gen.comp mcstas/%%PORTVERSION%%/sources/Source_simple.comp mcstas/%%PORTVERSION%%/sources/Virtual_input.comp mcstas/%%PORTVERSION%%/sources/Virtual_output.comp -@dir mcstas/%%PORTVERSION%%/contrib/Gas_tables -@dir mcstas/%%PORTVERSION%%/contrib/ISIS_tables -@dir mcstas/%%PORTVERSION%%/contrib/Neutronics -@dir mcstas/%%PORTVERSION%%/contrib/doc -@dir mcstas/%%PORTVERSION%%/contrib -@dir mcstas/%%PORTVERSION%%/data -@dir mcstas/%%PORTVERSION%%/editors -@dir mcstas/%%PORTVERSION%%/examples -@dir mcstas/%%PORTVERSION%%/misc -@dir mcstas/%%PORTVERSION%%/monitors -@dir mcstas/%%PORTVERSION%%/obsolete -@dir mcstas/%%PORTVERSION%%/optics -@dir mcstas/%%PORTVERSION%%/samples -@dir mcstas/%%PORTVERSION%%/share -@dir mcstas/%%PORTVERSION%%/sources -@dir mcstas/%%PORTVERSION%%