Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add more details and references, fix a few typos.

...

This will create a new directory named analisys-rel and populate it with few files and directories:

Code Block

         ./analisys-rel/
                        arch/
                        build/
                        data/
                        include/
                        SConstruct

Below we refer to this directory as a "test release". The directory is a test release. Usually separate analyses use separate test releases, and each test release should bear unique name if they are located in the same directory.

...

Code Block
cd analisys-rel
sit_setup

The last last sit_setup command is every important an and must be executed every time you change the test release directory. 

5. Create new analysis package (Freq: once)

...

This will create directory my_ana_pkg and populate it with few files and sub-directories:

Code Block

                             ./my_ana_pkg/
                                          SConscript
                                          doc/
                                              README
                                              ChangeLog

6. Add analysis module (Freq: once)

...

This will create file my_ana_pkg/src/my_ana_mod.py which contains boilerplate code for analysis module.

The codegen command can also be used to create other template modules.

Note

Like with the package name it's better to use names containing letters, digits, and underscores only.

...

Use your favorite editor to add or modify code the the analysis module.

8. Build (Freq: after every edit)

...