nuisance is hosted by Hepforge, IPPP Durham
close Warning: Can't synchronize with repository "(default)" ("(default)" is not readable or not a Git repository.). Look in the Trac log for more information.

Changes between Version 1 and Version 2 of CardFileExamples


Ignore:
Timestamp:
Jun 13, 2017, 12:25:16 PM (7 years ago)
Author:
Patrick Stowell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CardFileExamples

    v1 v2  
    11= Card File Examples =
     2
     3{{{
     4#!div class="important"
     5'''Author:''' Patrick Stowell
     6
     7'''Date:''' June 2017
     8
     9'''Versions:''' `NUISANCE v2r0`, `GENIE 2.12.6`
     10}}}
    211
    312The NUISANCE applications require card files to be written that list different comparison specifications you would like to run with.
    413
    5 The
     14We call an entry in the card file a 'structure' and there are a number of these structures available to the user when writing card files. These are listed below, with their required and optional arguments. Some structures are valid only for certain routines or apps, so where appropriate these have been labelled.
     15
     16NUISANCE Versions >v2r0 contain support for the card file to be specified in xml format, also opening up additional options to be passed in the structures. To look at examples for the older 'simple card' format that can be saved as a text file, please see the 'Simple Card Structures' section.
     17
     18[[PageOutline(1-3,Wiki content,inline,numbered)]]
     19
     20== XML Card Structures ==
     21
     22== Simple Card Structures ==
     23
     24=== Sample Structure ===
     25
     26{{{
     27sample   NAME   TYPE:/path/to/FILE   OPTION   NORM
     28}}}
     29
     30
     31=== Parameter Structure ===
     32{{{
     33TYPE_parameter  NAME   VALUE  STATE
     34}}}
     35
     36{{{
     37TYPE_parameter  NAME  VALUE  LOW  HIGH STEP STATE
     38}}}
     39
     40
     41=== Covariance Structure ===
     42{{{
     43covar ID   TYPE:INPUT   STATE
     44}}}
     45
     46
     47{{{
     48covar  ID   DIAL:NAME;CENTRAL;WIDTH   STATE
     49}}}
     50
     51
     52{{{
     53covar  ID   ROOT:FILEPATH;DIAL_HIST;COVARIANCE_HIST   STATE
     54}}}
     55
     56
     57=== Config Structure ===
     58
     59{{{
     60config   NAME   VALUE
     61}}}
     62
     63
     64=== Comments Structure ===
     65{{{
     66# Insert my comments here
     67
     68# These are my config options
     69config  VERBOSITY  4
     70}}}
     71
     72
     73
     74
     75
     76
     77