Adding New HarryPlotter Modules - KIT-CMS/Artus GitHub Wiki
Todo
Analysis module
To add a new analysis module, follow this three simple steps:
- copy
- paste
- modify
Each module is basically a new class. The class should contain at least 3 methods:
modify_argument_parser
- define which parameters used by the classprepare_args
- read those parametersrun
- actual body of the analysis module
Be sure to follow the naming convention - the class name should start with a capital letter, while the python file should not contain any.