Skip to content

Commit

Permalink
modified help of numcolumns and numrows
Browse files Browse the repository at this point in the history
  • Loading branch information
chiaratomaiuolo committed May 7, 2024
1 parent 3c445fe commit ab19bea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hexsample/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def add_readout_options(self) -> None:
group.add_argument('--layout', type=str, choices=layouts, default=layouts[0],
help='hexagonal layout of the readout chip')
group.add_argument('--numcolumns', type=int, default=304,
help='number of colums in the readout chip')
help='number of colums in the readout chip (counting from 0 column)')
group.add_argument('--numrows', type=int, default=352,
help='number of rows in the readout chip')
help='number of rows in the readout chip (counting from 0 row)')
group.add_argument('--pitch', type=float, default=0.005,
help='pitch of the readout chip in cm')
modes = [item.value for item in HexagonalReadoutMode]
Expand Down

0 comments on commit ab19bea

Please sign in to comment.