Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Default parameters:

Code Block
7 12 10010 010 0 0 0 0 0 0 0 0 0 0 0 0 

Code:

Code Block
# cmpars=None # for default
# cmpars=(7,0,10,100010) # turn off common mode correction
# cmpars=(7,1,100010,10) # correction in rows
# cmpars=(7,2,10,100010) # correction in columns - works the best for epix10ka
# cmpars=(7,4,10,100010) # correction in banks
# cmpars=(7,3,10,100010) # correction in rows and columns - works the best for jungfrau
# cmpars=(7,7,10,100010) # correction in banks, rows and columns (in this order - banks first, then rows, then columns)

Example:
nda = det.calib(evt, cmpars=(7,3,10,100010), mbits=1, mask=None, **kwargs)

...