Getting started with HEASoftPy#

This tutorial provides a quick-start guide to using heasoftpy, a Python wrapper for the high-energy astrophysics software HEASoft.

Learning Goals#

By the end of this tutorial, you will:

  • Understand the basic usage of HEASoftPy and the different ways of calling HEASoft tasks.

  • Learn about additional options for running pipelines and parallel jobs.

Introduction#

heasoftpy is a Python wrapper around the legacy high-energy software suite HEASoft, which supports analysis for many active and past NASA X-ray and Gamma-ray missions; it allows HEASoft tools to be called from Python scripts, interactive iPython sessions, or Jupyter Notebooks.

This tutorial presents a walk through the main features of heasoftpy.

Inputs#

  • The ObsID of the NuSTAR data used in example 4.

  • The ObsIDs of the NICER data used in example 5.

Outputs#

  • A filtered pre-processed NICER event list.

  • Partially processed NuSTAR data.

  • Processed NICER data.

Runtime#

As of 3rd November 2025, this notebook takes ~15 m to run to completion on Fornax, using the ‘small’ server with 8GB RAM/ 2 cores.

Imports#

import multiprocessing as mp
import os

import heasoftpy as hsp
from astroquery.heasarc import Heasarc

%matplotlib inline

Global Setup#

Functions#

Hide code cell source

def worker(in_dir: str) -> hsp.core.HSPResult:
    """
    A very simple demonstration of how you can wrap a HEASoftPy task call in order to
    be able to run it on several observations in parallel. In this case the function
    wraps the NICER level-2 processing pipeline, which will prepare data for
    scientific use.

    :param str in_dir: The directory containing the input data.
    :return: The output of the HEASoftPy task.
    :rtype: hsp.core.HSPResult
    """

    with hsp.utils.local_pfiles_context():

        # Call the tasks of interest
        out = hsp.nicerl2(
            indir=in_dir, noprompt=True, clobber=True, geomag_path=GEOMAG_PATH
        )

        # Run any other tasks...

    return out

Constants#

Hide code cell source

# The ObsID of the NuSTAR data we use in example four
NU_OBS_ID = "60001110002"

# The ObsIDs of the NICER data we use in example five
NI_OBS_IDS = [
    "1010010121",
    "1010010122",
    "1012020112",
    "1012020114",
]

Configuration#

Here we include code that downloads the data for our examples - we don’t include it in the main body of the notebooks as we do not wish it to be the main focus.

Hide code cell source

# ------------- Configure global package settings --------------
# Raise Python exceptions if a heasoftpy task fails
# TODO Remove once this becomes a default in heasoftpy
hsp.Config.allow_failure = False

# Set up the method for spawning processes.
mp.set_start_method("fork", force=True)
# --------------------------------------------------------------

# ------------- Setting how many cores we can use --------------
NUM_CORES = None
total_cores = os.cpu_count()

if NUM_CORES is None:
    NUM_CORES = total_cores
elif not isinstance(NUM_CORES, int):
    raise TypeError(
        "If manually overriding 'NUM_CORES', you must set it to an integer value."
    )
elif isinstance(NUM_CORES, int) and NUM_CORES > total_cores:
    raise ValueError(
        f"If manually overriding 'NUM_CORES', the value must be less than or "
        f"equal to the total available cores ({total_cores})."
    )
# --------------------------------------------------------------

# Here we make sure we have all the data this notebook requires
if os.path.exists("../../../_data"):
    ROOT_DATA_DIR = os.path.abspath("../../../_data")
    nu_data_dir = os.path.join(ROOT_DATA_DIR, "NuSTAR", "")
    ni_data_dir = os.path.join(ROOT_DATA_DIR, "NICER", "")
else:
    ROOT_DATA_DIR = os.getcwd()
    nu_data_dir = "NuSTAR/"
    ni_data_dir = "NICER/"

nu_data_link = Heasarc.locate_data(
    Heasarc.query_tap(f"SELECT * from numaster where obsid='{NU_OBS_ID}'").to_table(),
    "numaster",
)

# We only download the data if a matching ObsID directory does not exist.
#  This is not a perfect way to determine whether the necessary data are fully
#  present, but it is good enough for this tutorial.
if not os.path.exists(nu_data_dir + f"{NU_OBS_ID}/"):
    # Heasarc.download_data(nu_data_link, location=nu_data_dir)
    Heasarc.download_data(nu_data_link, host="aws", location=nu_data_dir)
    # Heasarc.download_data(nu_data_link, host='sciserver', location=nu_data_dir)

# Construct a string list of NICER ObsIDs to pass to the HEASARC TAP service.
ni_oi_str = "('" + "','".join(NI_OBS_IDS) + "')"
ni_data_links = Heasarc.locate_data(
    Heasarc.query_tap(
        f"SELECT * from nicermastr where obsid IN {ni_oi_str}"
    ).to_table(),
    "nicermastr",
)

# Again, we only download the data if a matching ObsID directory does not exist.
if any([not os.path.exists(os.path.join(ni_data_dir, oi)) for oi in NI_OBS_IDS]):
    # Heasarc.download_data(ni_data_links, location=ni_data_dir)
    Heasarc.download_data(ni_data_links, host="aws", location=ni_data_dir)
    # Heasarc.download_data(ni_data_links, host='sciserver', location=ni_data_dir)

# -------- Get geomagnetic data ---------
# This ensures that geomagnetic data required for NICER analyses are downloaded
GEOMAG_PATH = os.path.join(ROOT_DATA_DIR, "geomag")
os.makedirs(GEOMAG_PATH, exist_ok=True)
out = hsp.nigeodown(outdir=GEOMAG_PATH, allow_failure=False)
# ---------------------------------------
INFO: Downloading data AWS S3 ... [astroquery.heasarc.core]
INFO: Enabling anonymous cloud data access ... [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nustar/data/obs/00/6/60001110002/ [astroquery.heasarc.core]
INFO: Downloading data AWS S3 ... [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1010010121/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1010010122/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1012020114/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1012020112/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nustar/data/obs/00/6/60001110002/ [astroquery.heasarc.core]
INFO: Downloading data AWS S3 ... [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1010010121/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1010010122/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1012020114/ [astroquery.heasarc.core]
INFO: downloading s3://nasa-heasarc/nicer/data/obs/2017_10/1012020112/ [astroquery.heasarc.core]

Example 1: Accessing HEASoftPy help files#

For general help, you can run hsp? (if working in a Jupyter or iPython notebook) or use hsp.help().

hsp.help()
DESCRIPTION:
-----------
HEASoftpy is a Python package to wrap the HEASoft tools so that
they can be called from python scripts, interactive ipython
sessions, or Jupyter Notebooks.

>>> import heasoftpy as hsp
>>> help(hsp.fdump)
...

>>> result = hsp.ftlist(infile='input.fits', option='T')
>>> print(result.stdout)
...

REQUIREMENTS:
--------------
python (versions later than 3.8)
astropy


EXAMPLES:
--------------
Tasks in heasoftpy can be used in different ways.

- Built-in tasks can be called directly:
>>> result = hsp.ftlist(infile='input.fits', option='T')

** For version 1.4 and above **
To avoid importing all tasks at once (more than 800), the tasks
have been grouped into separate modules.
Wrappers are still available in the heasoftpy.* namespace,
which import from the modules when the task is called.
So you can do lazy (delayed) import with
>>> import heasoftpy as hsp
>>> hsp.ftlist
or full import with
>>> from heasoftpy.heatools import ftlist

To find the corresponding module for task you can use:
>>> hsp.utils.find_module_name('ftlist')
heatools


- A task object can be created and called (even if not installed in heasoftpy):
>>> ftlist = hsp.HSPTask('ftlist')
>>> result = ftlist(infile='input.fits', option='T')


The input to the functions is also flexible:

- Use individual parameters:
>>> result = ftlist(infile='input.fits', option='T')

- Pass a dictionary of parameters:
>>> params = {'infile':'input.fits', 'option':'T'}
>>> result = ftlist(params)

- When using HSPTask, the task parameters can also be input inline as task
attributes:
>>> ftlist = hsp.HSPTask('ftlist')
>>> ftlist.infile = 'input.fits'
>>> ftlist.option = 'T'
>>> result = ftlist()


All tasks take additional optional parameters:
- verbose: This can take several values. In all cases, the text printed by the
    task is captured, and returned in HSPResult.stdout/stderr. Additionally:
    - 0 (also False or 'no'): Just return the text, no progress printing.
    - 1 (also True or 'yes'): In addition to capturing and returning the text,
        task text will printed into the screen as the task runs.
    - 2: Similar to 1, but also prints the text to a log file.
    - 20: In addition to capturing and returning the text, log it to a file,
        but not to the screen.
        In both cases of 2 and 20, the default log file name is {taskname}.log.
        A logfile parameter can be passed to the task to override the file
        name.
- noprompt: Typically, HSPTask would check the input parameters and
    queries any missing ones. Some tasks (e.g. pipelines) can run by using
    default values. Setting noprompt=True, disables checking and querying
    the parameters. Default is False.
- stderr: If True, make `stderr` separate from `stdout`. The default
    is False, so stderr is written to stdout.




HELP:
----
Help for tasks can be accessed by:
>>> hsp.fdump?

NOTES:
------
Although HEASoftpy is written in pure python, it does NOT rewrite
the functions and tools already existing in HEASoft. A working
installation of HEASoft is therefore required.

For task-specific help, you can do:

hsp.ftlist?

Alternatively, you may use the HEASoft standard fhelp:

hsp.fhelp(task="ftlist")
---------------------
:: Execution Result ::
---------------------
> Return Code: 0
> Output:
NAME

   ftlist - List the contents of the input file.

USAGE

   ftlist infile[ext][filters] option

DESCRIPTION

   'ftlist' displays the contents of the input file. Depending on the
   value of the 'option' parameter, this task can be used to list any
   combination of the following:

     * a one line summary of the contents of each HDU (option = H)
     * the names, units, and ranges of each table column (option = C)
     * all or a selected subset of the header keywords (option = K)
     * the pixel values in a subset of an image (option = I)
     * the values in selected rows and columns of a table (option = T)

   If a specific HDU name or number is given as part of the input file
   name then only that HDU will be listed. If only the root name of the
   file is specified, then every HDU in the file will be listed.

PARAMETERS

   infile [filename]
          Input file name and optional extension name or number enclosed
          in square brackets of the file or HDU to be displayed. If a
          specific HDU is not given, then all the HDUs in the file will be
          displayed. Additional virtual file filters can be appended to
          the file name, as shown in some of the examples, to modify the
          amount of information that is display.

   option [string]
          The option parameter controls the type of information to
          display. The string may consist of any combination of the
          characters H, C, K, I, and/or T, where,

         H lists a 1-line summary of the HDU,
         C lists the names and units of Columns in a table,
         K lists the Keywords,
         I lists Image pixel values, and
         T lists the element values in rows and columns of a Table.

          By default the K, I, and T options display, respectively, all
          the keywords, image pixels or table elements in the HDU. These
          options can be modified to display only a restricted range of
          values by using the additional parameters described below.

   (outfile = "-") [filename]
          Name of optional text file where the output listing will be
          sent. If 'outfile' = "-", "stdout", "STDOUT", or a blank string,
          then the output will be sent to the stdout stream. If the name
          is preceded by an '!' (or '\!' on the Unix command line), then
          any existing file with that name will be overwritten by the new
          file.

   (clobber = No) [boolean]
          If outfile already exists, then setting "clobber = yes" will
          cause it to be overwritten.

   (include = "*") [string]
          When listing header keywords (with option = 'K') the 'include'
          parameter contains a comma separated list of the keywords to be
          displayed. The wild card characters (?, *, and #) may be used in
          the names, where '?' will match any single character, '*'
          matches any string of characters (including zero characters) and
          '#' matches a string of decimal digits. The default value, '*',
          will display every keyword. For example, include =
          'p*,naxis#,?zero*' will display all keywords beginning with 'P',
          plus all keywords beginning with 'NAXIS' and followed by one or
          more digits, plus all the keywords that have the string 'ZERO'
          as the 2nd through 5th characters of the keyword name.

   (exclude = "") [string]
          When listing header keywords (with option = 'K') the 'exclude'
          parameter contains an optional comma separated list of keyword
          names that should not be displayed, even if they match one of
          the 'include' keyword names . Wildcard characters may be used in
          the list as described for the 'include' parameter. For example,
          include='C*' and exclude='COMMENT' will list all the keywords
          beginning with C except the COMMENT keywords.

   (section = "*:*") [string]
          When listing the pixel values in an image (with option = 'I'),
          the 'section' parameter specifies the range of row and columns
          in the image to display. By default the entire image will be
          listed, but this is probably not useful in most cases because
          the long output lines will simply wrap around on the display.
          The image section format is "xmin:xmax,ymin:ymax". For example,
          "30:35,40:50" will display the pixel values in columns 30 - 35
          and rows 40 - 50 of the image.

   (columns = "*") [string]
          When listing the contents of FITS tables (with option = 'T') the
          'columns' parameter gives a comma separated list of the columns
          in the table to be displayed. Either the column name or the
          columun number (beginning with 1 for the first column in the
          table) may be listed; The column names are not case-sensitive.
          The columns will be displayed in the order that they are given
          in this list. If a column name in the list does not exist in the
          table, it will be ignored.

          The wildcard characters (?, *, and #) may be used in the names
          to match more than one column, as described for the 'include'
          parameter. For example, 'columns=?sky' will list all the columns
          whose names are 4 characters long and end with the string 'sky'.
          The default value, '*', will display all the columns in the
          table.

          The simplest way to display all but a small number of columns in
          the table is to use the '[col]' virtual filename filter to list
          the excluded columns, preceded by a minus sign. For example, if
          infile = 'file.fits[col -ACOL;-BCOL]' then all the columns in
          the table except the columns named 'ACOL' and 'BCOL' will be
          displayed.

   (rows = "-") [string]
          When listing the contents of FITS tables (with option = 'T') the
          'rows' parameter gives a comma separated list of rows or row
          ranges in the table to be displayed. For example, "2,4,8-12"
          will display the table element values in rows 2, 4, and rows 8
          through 12 of the table, and "50-" will display rows 50 and
          higher. The row numbers must be specified in ascending order and
          the ranges must not overlap. By default, all rows are displayed.

   (vector = "-") [string]
          When listing the contents of vector columns in binary tables
          (with option = "T"), the 'vector' parameter gives the range of
          elements in the vector to display. For example, vector=1-5 will
          list the first 5 elements. By default, all elements are
          displayed. Bit columns, (e.g., with TFORMn = '32X') are a
          special case and are displayed as a string of 1s or 0s, 8 bits
          per line. In this case, 'vector=1-2' would display the first 16
          bits in the vector.

   (separator = " ") [string]
          When listing image pixel values (option = 'I') or table elements
          (option = 'T'), the string given by the separator parameter will
          be inserted between each column. By default, the columns will be
          separated by a space character.

   (rownum = "Yes") [boolean]
          If rownum = "Yes", then the row number will be listed at the
          beginning of each row when displaying image pixels (option =
          'I') or table data (option = 'T').

   (colheader = "Yes") [boolean]
          If colheader = "Yes", a header will be listed at the top of each
          column when displaying image pixels (option = 'I') or table data
          (option = 'T'). The header consists of the column number in the
          case of images, and the column name and units in the case of
          tables.

EXAMPLES

   Note that when commands are issued on the Unix command line, strings
   containing special characters such as '[' or ']' must be enclosed in
   single or double quotes.

   1. Print out summary information about each HDU in the input file (the
   'H' option), and a list of the columns in each table HDU (the 'C'
   option).

      ftlist infile.fits hc

   2. Print out the HDU summary (H option) and the header keywords (K
   option) in the input file. The first example lists all the keywords in
   the all the HDUs in the file. The second example lists only the COMMENT
   and HISTORY keywords in the 2nd HDU in the file. The 3rd example lists
   all the keyword beginning with the letter 'C', excluding the COMMENT
   keywords.

      ftlist infile.fits hk

      ftlist infile.fits+1 hk include='comment,history'

      ftlist infile.fits+1 hk include='c*' exclude='COMMENT'

   3. Print out summary HDU information, a list of columns in the table,
   and the element values in the tables. The first example lists the
   entire contents of all the table HDUs in the file. The 2nd example
   lists only rows 1 through 20 of the X and Y columns in the EVENTS
   extension. The 3rd example is similar, except it lists the 1st and 3rd
   columns in the table. The 4th example lists all the columns except the
   'time' column, and only displays the first two elements of each vector
   column.

      ftlist infile.fits hct

      ftlist 'infile.fits[events]' hct rows=1-20 columns=x,y

      ftlist 'infile.fits[events]' hct rows=1-20 columns=1,3

      ftlist 'infile.fits[col -time]' hct vector=1-2


   4. Dump all the row and columns in the EVENTS table to the out.fits
   file; the values are separated by a comma, and no column headers or row
   numbers are printed.

      ftlist 'infile.fits[events] t outfile=out.fits separator=', '
              rownum=no colheader=no


   5. Print out the image pixel values for columns 50 through 55 and rows
   20 through 40 in the input image, suppressing the column headers and
   row numbers.

      ftlist image.fits i section=50:55,20:40 colheader=no rownum=no

SEE ALSO

   filenames, imfilter, colfilter, rowfilter, binfilter,

   fv, the interactive FITS file editor, can also be used to view the
   contents of FITS files.

   The design of this task is based on the fdump, fstruct, flcol,
   fkeyprint, flist, and fimgdmp tasks in the ftools package and the
   dmlist task in the CXC CIAO package.

LAST MODIFIED

   April 2002

> Parameters:
	task      : ftlist
	text      : yes
	online    : no
	local     : no
	recurse   : yes
	pager     : more
	mode      : ql

Warning

Note that the use of ‘?’ is not valid in ‘standard’ Python, only in Jupyter notebooks and iPython.

Example 2: Exploring the content of a FITS file with ftlist#

The simplest way to run a task is call the function directly: hsp.task_name(...).

In this case, it is hsp.ftlist(...)

For ftlist, there two required inputs: infile and option, so that both parameters need to be provided, otherwise, we will get prompted for the missing parameters.

infile is the name of the input FITS file. It can be a local or a remote file. In this case, we use a FITS file from the HEASARC archive. We can specify the header data unit (HDU) that we want to access from the FITS file in the usual way (e.g., append [1] to the file name).

We can also pass other optional parameters (rows='1-5' to specify which rows to print).

infile = (
    "https://heasarc.gsfc.nasa.gov/FTP/nicer/data/obs/2017_10/1012010115/"
    "xti/event_cl/ni1012010115_0mpu7_cl.evt.gz[1]"
)
result = hsp.ftlist(infile=infile, option="T", rows="1-5")

The return of all task execution calls is an HSPResult object. Which is a convenient object that holds the status of the call and its return. For example:

  • returncode: a return code: 0 if the task executed without errors (int).

  • stdout: standard output (str).

  • stderr: standard error message (str).

  • params: dict of the parameters used for the task.

  • custom: dict of any other variables returned by the task.

In this case, we may want to just print the output as:

print("return code:", result.returncode)
print(result.stdout)
return code: 0

                    TIME RAWX RAWY    PHA PHA_FA DE    DEADTIME EVENT_FL                 TICK MPU_A_ MPU_UNDER_C PI_FAS     PI       PI_RATIO
                       s pixe pixe   chan   chan              s                               Celsiu               chan   chan               
  1  120747738.394123629    4    6   2315   2044 30 0.000022637 00011000       20833975213560 35.700           2    669    754        1.12706
  2  120747739.754077032    5    1   3079   2878 25 0.000022637 00011000      228921045540112 35.169           4   1064   1071        1.00658
  3  120747739.790229082    3    0    824   NULL 27 0.000015195 00010000      228921046472976 35.169           3     NU    181             NU
  4  120747740.091737226    6    6    274   NULL 10 0.000015195 00010000       20840768473294 34.745           3     NU     20             NU
  5  120747740.195529014    1    5    379   NULL 62 0.000015815 00110000       20827191246871 32.519           3     NU     22             NU

With this, it may be useful to check that returncode == 0 after every call if you are not running the tasks interactively.

With heasoftpy version 1.5 and above. You can make the call raise a Python exception when it fails. This feature is controlled by the config parameter: allow_failure.

Setting hsp.config.Config.allow_failure = False, means the task will raise an HSPTaskException exception if it fails. Setting the value to True, means the task will not raise an exception, and the return code value will need to be checked by the user.

The value is set to True by default for versions <1.5. For version 1.5, not setting the value prints a warning. In a future version, the default will change to False, so that all failures raise an exception.

We can modify the parameters returned in result, and pass them again to the task.

Say we do not want to print the column header:

params = result.params
params["colheader"] = "no"
result_no_col_hdr = hsp.ftlist(params)

print(result_no_col_hdr.stdout)
  1  120747738.394123629    4    6   2315   2044 30 0.000022637 00011000       20833975213560 35.700           2    669    754        1.12706
  2  120747739.754077032    5    1   3079   2878 25 0.000022637 00011000      228921045540112 35.169           4   1064   1071        1.00658
  3  120747739.790229082    3    0    824   NULL 27 0.000015195 00010000      228921046472976 35.169           3     NU    181             NU
  4  120747740.091737226    6    6    274   NULL 10 0.000015195 00010000       20840768473294 34.745           3     NU     20             NU
  5  120747740.195529014    1    5    379   NULL 62 0.000015815 00110000       20827191246871 32.519           3     NU     22             NU

If we forget to pass a required parameter, we will be prompted for it. For example:

# result = hsp.ftlist(infile="../tests/test.fits")

would prompt for the option value:

Print options: H C K I T  [T] ..

In this case, parameter ftlist:option was missing, so we are prompted for it, and the default value is printed between brackets: [T], we can type a value and then press ‘Return’ to set our own value, or just press ‘Return’ to accept the default value.

For tasks that take longer to run, the user may be interested in seeing the output as the task runs. There is a verbose option to print the output of the command similar to the standard output in command line tasks.

result = hsp.ftlist(infile=infile, option="T", rows="1-5", verbose=True)
                    TIME RAWX RAWY    PHA PHA_FA DE    DEADTIME EVENT_FL                 TICK MPU_A_ MPU_UNDER_C PI_FAS     PI       PI_RATIO
                       s pixe pixe   chan   chan              s                               Celsiu               chan   chan               
  1  120747738.394123629    4    6   2315   2044 30 0.000022637 00011000       20833975213560 35.700           2    669    754        1.12706
  2  120747739.754077032    5    1   3079   2878 25 0.000022637 00011000      228921045540112 35.169           4   1064   1071        1.00658
  3  120747739.790229082    3    0    824   NULL 27 0.000015195 00010000      228921046472976 35.169           3     NU    181             NU
  4  120747740.091737226    6    6    274   NULL 10 0.000015195 00010000       20840768473294 34.745           3     NU     20             NU
  5  120747740.195529014    1    5    379   NULL 62 0.000015815 00110000       20827191246871 32.519           3     NU     22             NU

Example 3: Using ftselect#

In this second example, we will work with the same infile from above.

We see is the first HDU of the file is an events table. Say, we want to filter the events that have PHA values between 500 and 600.

We can call hsp.ftselect like before, but we can also to the call differently by using hsp.HSPTask, and adding the parameters one at a time

# Create a task object
ftselect = hsp.HSPTask("ftselect")

# Pass the input and output files.
ftselect.infile = infile
ftselect.outfile = "tmp.fits"

# Set the selection expression: PHA between 500-600
ftselect.expression = "PHA>500 && PHA<=600"

# We do not want to copy all the file extensions, just the one that is of interest.
ftselect.copyall = False

# We set clobber so the output file is overwritten if it exits.
ftselect.clobber = True

Up to this point, the task has not run yet. We now call ftselect() to execute it.

result = ftselect()

Now we can check the content of the new file with ftlist:

result = hsp.ftlist(infile="tmp.fits", option="T")
print(result.stdout)
                    TIME RAWX RAWY    PHA PHA_FA DE    DEADTIME EVENT_FL                 TICK MPU_A_ MPU_UNDER_C PI_FAS     PI       PI_RATIO
                       s pixe pixe   chan   chan              s                               Celsiu               chan   chan               
  1  120747745.358898744    6    1    524   NULL 15 0.000015195 00010000       20840904385748 34.851           2     NU     74             NU
  2  120747756.367098957    2    1    550   NULL 36 0.000015195 00010000       20834438978862 35.594           2     NU     92             NU
  3  120747764.666539520    0    1    508    500 56 0.000022637 00011000       20830486740240 32.731           4     80     78       0.975000
  4  120747770.521417022    6    0    548    549 07 0.000022637 00011000       20841835000362 34.109           3     75     74       0.986667
  5  120747776.059803203    0    4    565   NULL 65 0.000015195 00010000       20828116669240 32.413           3     NU     73             NU
  6  120747779.795994475    1    5    527   NULL 62 0.000015195 00010000       20828213075905 32.413           3     NU     73             NU
  7  120747788.246086136    1    1    541    458 46 0.000022637 00011000       20832589446869 33.685           3     59     73        1.23729
  8  120747792.877045467    2    2    578    582 45 0.000022637 00011000       20832708941858 33.579           3     97     82       0.845361
  9  120747795.119232163    4    3    523   NULL 33 0.000015195 00010000       20835438918714 35.700          10     NU     52             NU
 10  120747795.455077022    0    2    572    600 55 0.000022637 00011000       20831281193324 32.731           6     97     92       0.948454
 11  120747798.620658755    2    3    567   NULL 53 0.000015195 00010000       20831362876535 32.731           3     NU     74             NU
 12  120747800.580200016    5    0    561   NULL 16 0.000015195 00010000       20842329301730 34.745           3     NU     57             NU
 13  120747821.346425653    7    2    563   NULL 04 0.000015195 00010000       20843146465085 34.109           2     NU     87             NU
 14  120747823.249950290    0    4    551   NULL 65 0.000015195 00010000       20829334338329 32.201           4     NU     68             NU
 15  120747824.222305611    4    0    529    502 17 0.000022637 00011000       20842939356416 34.639           3     64     67        1.04688
 16  120747825.832169056    1    2    578    539 54 0.000022637 00011000       20832065029664 32.519           3     83     83        1.00000
 17  120747840.206527740    1    2    504    481 54 0.000022637 00011000       20832435938925 32.625           4     61     56       0.918033
 18  120747865.048649013    2    6    532   NULL 50 0.000015195 00010000       20833076953473 32.625           3     NU     67             NU
 19  120747874.186928332    6    3    597   NULL 13 0.000015195 00010000       20844228630469 34.639           6     NU     93             NU
 20  120747901.511291534    2    0    568   NULL 37 0.000015195 00010000       20838184203998 35.594           3     NU     70             NU
 21  120747902.830995142    6    4    510    555 12 0.000022637 00011000       20844967754460 34.639           5     75     73       0.973333
 22  120747907.814452976    3    2    581   NULL 44 0.000015195 00010000       20835674730062 33.579           4     NU     93             NU
 23  120747924.366508573    7    1    575   NULL 05 0.000015195 00010000       20845804747079 34.003           3     NU     83             NU

This filtered file contains only PHA values between 500–600!

We’ll also clean up after ourselves by deleting the temporary file:

# Now we remove the temporary file
if os.path.exists("tmp.fits"):
    os.remove("tmp.fits")

Example 4: Parameter query control#

For some tasks, particularly pipelines (e.g. ahpipeline, nupipeline, etc.), the user may wish to run the task without querying all the parameters. They all have reasonable defaults.

In that case, we can pass the noprompt=True when calling the task, and HEASoftPy will run the task without checking the parameters. For example, to run the first stage of processing for the NuSTAR observation 60001110002 (data are downloaded in the ‘configuration’ cell near the top of the notebook), we can do:

out = hsp.nupipeline(
    indir=nu_data_dir + f"{NU_OBS_ID}/",
    outdir=f"{NU_OBS_ID}_p",
    steminputs=f"nu{NU_OBS_ID}",
    exitstage=1,
    verbose=True,
    noprompt=True,
    clobber=True,
)
============================================================
                 Running NuSTAR pipeline
 Task: nupipeline Version: 0.4.12 Release Date: 2023-11-16
============================================================
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPMA - - TELDEF 2012-11-04 17:21:07 "-" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuA20100101v002.teldef 0
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPMB - - TELDEF 2012-11-04 17:21:07 "-" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuB20100101v002.teldef 0
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPM - - ALIGNMENT 2012-11-04 17:21:07 "type.eq.systems" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuCalign20120101v001.fits 1
------------------------------------------------------------
               Setting Optical Axis Direction
------------------------------------------------------------
nupipeline_0.4.12: Info: 'pntra' and/or 'pntdec' input parameter set to POINT
nupipeline_0.4.12: Info: getting default S/C direction
nupipeline_0.4.12: Info: Optical Axis   RA : 3.2188650000000E+02(deg)
nupipeline_0.4.12: Info: Optical Axis  DEC : 5.6889300000000E+01(deg)
nupipeline_0.4.12: Info: Running 'numetrology' 
nupipeline_0.4.12: Command: numetrology clobber=yes outpsdfilecor=./60001110002_p/nu60001110002_psdcorr.fits chatter=3 history=yes mastaspectfile=./60001110002_p/nu60001110002_mast.fits metgridfile=CALDB metflag=yes alignfile=nuCalign20120101v001.fits metrologyfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz inpsdfilecor= psdcal=yes outpsdfile=./60001110002_p/nu60001110002_psd.fits
---------------------------------------------------------------------
 		Running 'numetrology_0.1.9'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Metrology File                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz'
Name of the input Metrology Grid File                 :'CALDB'
Name of the output Position Sensing Detector File     :'./60001110002_p/nu60001110002_psd.fits'
Name of the output corrected Position Sensing Detector File :'./60001110002_p/nu60001110002_psdcorr.fits'
Apply PSD linearization to the corrected Position Sensing Detector File : yes
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the output Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
numetrology_0.1.9: Warning: /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz file (ext 'MET_CMP') is empty.
numetrology_0.1.9: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/metrology/nuCmetgrid20100101v002.fits' file for metgrid data of PSD0.
numetrology_0.1.9: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/metrology/nuCmetgrid20100101v002.fits' file for metgrid data of PSD1.
numetrology_0.1.9: Warning: /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz file (ext 'MET_CMP') is empty.
numetrology_0.1.9: Info: Processing nuCalign20120101v001.fits file.
---------------------------------------------------------------------
numetrology_0.1.9: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'numetrology' exit with success. './60001110002_p/nu60001110002_mast.fits' mast aspect solution file created.
nupipeline_0.4.12: Info: Running 'nuattcorr' 
nupipeline_0.4.12: Command: nuattcorr chatter=3 attfile=/home/jovyan/project/_data/NuSTAR/60001110002/auxil/nu60001110002_att.fits.gz chuoffsetfile=CALDB outattfile=./60001110002_p/nu60001110002_att.fits clobber=yes history=yes
---------------------------------------------------------------------
 		Running 'nuattcorr_0.1.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Attitude file                       :'/home/jovyan/project/_data/NuSTAR/60001110002/auxil/nu60001110002_att.fits.gz'
Name of the output Corrected Attitude file            :'./60001110002_p/nu60001110002_att.fits'
Name of the input CHUs Quaternion Offset FITS file    :'CALDB'
---------------------------------------------------------------------
nuattcorr_0.1.2: Info: Creating '3587_tmp_nuattcorr/3587in_nu60001110002_att.fits.gz' symbolic link to input Attitude file.
nuattcorr_0.1.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuCchuoffset20100101v001.fits file.
nuattcorr_0.1.2: Info: executing 'ftcopy infile='3587_tmp_nuattcorr/3587in_nu60001110002_att.fits.gz[col @3587_tmp_nuattcorr/3587in.col]' outfile=3587_tmp_nuattcorr/3587out_nu60001110002_att.fits'
nuattcorr_0.1.2: Info: './60001110002_p/nu60001110002_att.fits' file successfully written.
---------------------------------------------------------------------
nuattcorr_0.1.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuattcorr' exit with success. './60001110002_p/nu60001110002_att.fits' corrected attitude file created.
nupipeline_0.4.12: Info: Copying OBEB HK File '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_obeb.hk.gz' in './60001110002_p/nu60001110002_obeb.hk'
nupipeline_0.4.12: Info: Copying Level 1 Event File '/home/jovyan/project/_data/NuSTAR/60001110002/event_uf/nu60001110002A_uf.evt.gz' in './60001110002_p/nu60001110002A_uf.evt.gz'
nupipeline_0.4.12: Info: the file './60001110002_p/nu60001110002A_uf.evt.gz' is compressed
nupipeline_0.4.12: Info: Unzip the file to allow FTOOLS processing

============================================================
nupipeline_0.4.12: Stage  I: Calibrating './60001110002_p/nu60001110002A_uf.evt'
============================================================

nupipeline_0.4.12: Info: Running 'nuflagbad' 
nupipeline_0.4.12: Command: nuflagbad userbpfile=NONE chatter=3 clobber=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt bpfile=CALDB history=yes dispixfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz outbpfile=./60001110002_p/nu60001110002A_bp.fits
---------------------------------------------------------------------
 		Running 'nuflagbad_0.1.8'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the input on-board disabled pixel file        :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz'
Name of the input on-ground bad pixel file            :'CALDB'
Name of the input user bad pixel file                 :'NONE'
Name of the output Bad Pixel file                     :'./60001110002_p/nu60001110002A_bp.fits'
---------------------------------------------------------------------
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuflagbad_0.1.8: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
nuflagbad_0.1.8: Info: Creating output bad pixel file.
---------------------------------------------------------------------
nuflagbad_0.1.8: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagbad' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuhotpix' 
nupipeline_0.4.12: Command: nuhotpix outhpfile=./60001110002_p/nu60001110002A_hp.fits infile=./60001110002_p/nu60001110002A_uf.evt binsize=600.0 cellsize=5 cleanflick=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp bthresh=6 logpos=-6.0 history=yes chatter=3 iterate=yes clobber=yes impfac=1.0
---------------------------------------------------------------------
 		Running 'nuhotpix_0.1.7'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the output Hot Pixel file                     :'./60001110002_p/nu60001110002A_hp.fits'
Bin size (seconds) for count image generation         :'600.000000'
Search and flag flickering pixels?                      : yes
Iterate the search                                      : yes
---------------------------------------------------------------------
nuhotpix_0.1.7: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89745601.000000 - 89746201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746201.000000 - 89746801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy= 5 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746801.000000 - 89747401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89747401.000000 - 89748001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748001.000000 - 89748601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748601.000000 - 89749201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749201.000000 - 89749801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749801.000000 - 89750401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy= 7 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89750401.000000 - 89751001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751001.000000 - 89751601.000000]
nuhotpix_0.1.7: Info
: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751601.000000 - 89752201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752201.000000 - 89752801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752801.000000 - 89753401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89753401.000000 - 89754001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754001.000000 - 89754601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754601.000000 - 89755201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755201.000000 - 89755801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755801.000000 - 89756401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89756401.000000 - 89757001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757001.000000 - 89757601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 7 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757601.000000 - 89758201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=14 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758201.000000 - 89758801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758801.000000 - 89759401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89759401.000000 - 89760001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760001.000000 - 89760601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760601.000000 - 89761201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy=13 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 2 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761201.000000 - 89761801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 3 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761801.000000 - 89762401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89762401.000000 - 89763001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=11 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763001.000000 - 89763601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763601.000000 - 89764201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764201.000000 - 89764801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764801.000000 - 89765401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count
 maps for events with TIME included in [89765401.000000 - 89766001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=15 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766001.000000 - 89766601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766601.000000 - 89767201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767201.000000 - 89767801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767801.000000 - 89768401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89768401.000000 - 89769001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769001.000000 - 89769601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769601.000000 - 89770201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770201.000000 - 89770801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770801.000000 - 89771401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89771401.000000 - 89772001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772001.000000 - 89772601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=24 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772601.000000 - 89773201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info
: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773201.000000 - 89773801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773801.000000 - 89774401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89774401.000000 - 89775001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775001.000000 - 89775601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775601.000000 - 89776201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776201.000000 - 89776801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776801.000000 - 89777401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89777401.000000 - 89778001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778001.000000 - 89778601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778601.000000 - 89779201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779201.000000 - 89779801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779801.000000 - 89780401.000000]

nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy= 0 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89780401.000000 - 89781001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781001.000000 - 89781601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781601.000000 - 89782201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782201.000000 - 89782801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782801.000000 - 89783401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=16 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89783401.000000 - 89784001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784001.000000 - 89784601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=21 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=15 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784601.000000 - 89785201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785201.000000 - 89785801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785801.000000 - 89786401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89786401.000000 - 89787001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 4
det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787001.000000 - 89787601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787601.000000 - 89788201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788201.000000 - 89788801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 4 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788801.000000 - 89789401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89789401.000000 - 89790001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy= 7 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790001.000000 - 89790601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=14 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=29 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790601.000000 - 89791201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791201.000000 - 89791801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791801.000000 - 89792401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89792401.000000 - 89793001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events
with TIME included in [89793001.000000 - 89793601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793601.000000 - 89794201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794201.000000 - 89794801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794801.000000 - 89795401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89795401.000000 - 89796001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796001.000000 - 89796601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796601.000000 - 89797201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797201.000000 - 89797801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797801.000000 - 89798401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89798401.000000 - 89799001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799001.000000 - 89799601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799601.000000 - 89800201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800201.000000 - 89800801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800801.00000
0 - 89801401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 0 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89801401.000000 - 89802001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802001.000000 - 89802601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802601.000000 - 89803201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803201.000000 - 89803801.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803801.000000 - 89804401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89804401.000000 - 89805001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805001.000000 - 89805601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805601.000000 - 89806201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806201.000000 - 89806801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806801.000000 - 89807401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89807401.000000 - 89808001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: I
ter 1 Found Hot Pixel in rawx=12 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808001.000000 - 89808601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808601.000000 - 89809201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809201.000000 - 89809801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809801.000000 - 89810401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89810401.000000 - 89811001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811001.000000 - 89811601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811601.000000 - 89812201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812201.000000 - 89812801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812801.000000 - 89813401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89813401.000000 - 89814001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814001.000000 - 89814601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=28 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814601.000000 - 89815201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy= 4 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel
 in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815201.000000 - 89815801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815801.000000 - 89816401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89816401.000000 - 89817001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 3 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817001.000000 - 89817601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817601.000000 - 89818201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=27 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818201.000000 - 89818801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818801.000000 - 89819401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89819401.000000 - 89820001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820001.000000 - 89820601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820601.000000 - 89821201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=15 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821201.000000 - 89821801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821801.000000 - 89822401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89822401.000000 - 89823001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=22 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info:
 Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823001.000000 - 89823601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823601.000000 - 89824201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824201.000000 - 89824801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824801.000000 - 89825401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89825401.000000 - 89826001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826001.000000 - 89826601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=24 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826601.000000 - 89827201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827201.000000 - 89827801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827801.000000 - 89828401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=27 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89828401.000000 - 89829001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=3
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829001.000000 - 89829601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829601.000000 - 89830201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830201.000000 - 89830801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830801.000000 - 89831401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89831401.000000 - 89832001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832001.000000 - 89832601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832601.000000 - 89833201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833201.000000 - 89833801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833801.000000 - 89834401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89834401.000000 - 89834701.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
nuhotpix_0.1.7: Info: Creating output hot pixel file.
---------------------------------------------------------------------
nuhotpix_0.1.7: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuhotpix' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpha' 
nupipeline_0.4.12: Command: nucalcpha clobber=yes cleancols=yes gradefile=CALDB chatter=3 evtthr=55 history=yes phaparfile=CALDB timerise=0.0016 outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt offsetfile=CALDB
---------------------------------------------------------------------
 		Running 'nucalcpha_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the input Offset file                         :'CALDB'
Name of the input Grade file                          :'CALDB'
Name of the input PHAPAR file                         :'CALDB'
Delete temporary columns                              : yes
---------------------------------------------------------------------
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/grade/nuCgrade20100101v002.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/cap_offset/nuAoffset20100101v001.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET0.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET1.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET2.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET3.
nucalcpha_0.2.2: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
---------------------------------------------------
nucalcpha_0.2.2: Info: 		 NuSTAR GRADES
nucalcpha_0.2.2: Info: Total events                            750717
nucalcpha_0.2.2: Info: Total events with grade  0              136341   18.1614%
nucalcpha_0.2.2: Info: Total events with grade  1               17295    2.3038%
nucalcpha_0.2.2: Info: Total events with grade  2               14363    1.9132%
nucalcpha_0.2.2: Info: Total events with grade  3               15323    2.0411%
nucalcpha_0.2.2: Info: Total events with grade  4               14675    1.9548%
nucalcpha_0.2.2: Info: Total events with grade  5                1433    0.1909%
nucalcpha_0.2.2: Info: Total events with grade  6                1244    0.1657%
nucalcpha_0.2.2: Info: Total events with grade  7                1387    0.1848%
nucalcpha_0.2.2: Info: Total events with grade  8                1411    0.1880%
nucalcpha_0.2.2: Info: Total events with grade  9                1628    0.2169%
nucalcpha_0.2.2: Info: Total events with grade 10                1620    0.2158%
nucalcpha_0.2.2: Info: Total events with grade 11                1738    0.2315%
nucalcpha_0.2.2: Info: Total events with grade 12                1621    0.2159%
nucalcpha_0.2.2: Info: Total events with grade 13                 338    0.0450%
nucalcpha_0.2.2: Info: Total events with grade 14                 396    0.0527%
nucalcpha_0.2.2: Info: Total events with grade 15                 412    0.0549%
nucalcpha_0.2.2: Info: Total events with grade 16                 342    0.0456%
nucalcpha_0.2.2: Info: Total events with grade 17                 438    0.0583%
nucalcpha_0.2.2: Info: Total events with grade 18                 354    0.0472%
nucalcpha_0.2.2: Info: Total events with grade 19                 385    0.0513%
nucalcpha_0.2.2: Info: Total events with grade 20                 389    0.0518%
nucalcpha_0.2.2: Info: Total events with grade 21                1299    0.1730%
nucalcpha_0.2.2: Info: Total events with grade 22                1255    0.1672%
nucalcpha_0.2.2: Info: Total events with grade 23                1287    0.1714%
nucalcpha_0.2.2: Info: Total events with grade 24                1268    0.1689%
nucalcpha_0.2.2: Info: Total events with grade 25                3063    0.4080%
nucalcpha_0.2.2: Info: Total events with grade 26                 328
0.0437%
nucalcpha_0.2.2: Info: Total events with grade 27                 131    0.0174%
nucalcpha_0.2.2: Info: Total events with grade 28                  81    0.0108%
nucalcpha_0.2.2: Info: Total events with grade 29                  71    0.0095%
nucalcpha_0.2.2: Info: Total events with grade 30                  82    0.0109%
nucalcpha_0.2.2: Info: Total events with grade 31                 340    0.0453%
nucalcpha_0.2.2: Info: Total events with grade 32              528379   70.3832%
nucalcpha_0.2.2: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpha_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpha' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpi' 
nupipeline_0.4.12: Command: nucalcpi chatter=3 outfile=./60001110002_p/nu60001110002A_uf.1978tmp clobber=yes hkfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz clcfile=CALDB infile=./60001110002_p/nu60001110002A_uf.evt gainfile=CALDB clcfilterfile=CALDB temperature=5 history=yes
---------------------------------------------------------------------
 		Running 'nucalcpi_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the input HK Header file                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz'
Name of the input GAIN file                           :'CALDB'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
---------------------------------------------------------------------
nucalcpi_0.2.2: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nucalcpi_0.2.2: Info: Processing /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz file.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET3.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET3.
nucalcpi_0.2.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuCclcfilter20100101v001.fits file.
nucalcpi_0.2.2: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpi_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpi' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuflagevt' 
nupipeline_0.4.12: Command: nuflagevt clobber=yes history=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt evtcutfile=CALDB chatter=3 depthcutfile=CALDB
---------------------------------------------------------------------
 		Running 'nuflagevt_0.1.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
---------------------------------------------------------------------
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET0_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET1_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET2_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET3_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET0_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET1_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET2_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET3_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET0.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET1.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET2.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET3.
nuflagevt_0.1.4: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuflagevt_0.1.4: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nuflagevt_0.1.4: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagevt' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucoord' 
nupipeline_0.4.12: Command: nucoord pntra=3.2188650000000E+02 randomizecoordinator=yes teldef=nuA20100101v002.teldef pixposfile=CALDB clobber=yes timemargin=32.0 chatter=3 history=yes follow_sun=yes seedcoordinator=-1956 pntdec=5.6889300000000E+01 det1yref=350 initseed=no outfile=./60001110002_p/nu60001110002A_uf.1978tmp attinterpol=LINEAR alignfile=nuCalign20120101v001.fits mastaspectfile=./60001110002_p/nu60001110002_mast.fits attfile=./60001110002_p/nu60001110002_att.fits det1reffile=./60001110002_p/nu60001110002A_det1.fits optaxisfile=./60001110002_p/nu60001110002A_oa.fits aberration=no infile=./60001110002_p/nu60001110002A_uf.evt det1xref=350
--------------------------------------------------------------
             Running ' nucoord version 0.1.8 '
--------------------------------------------------------------
nucoord_0.1.8: Info: Name of the Input Event File  './60001110002_p/nu60001110002A_uf.evt'
nucoord_0.1.8: Info: Name of the Output Event File './60001110002_p/nu60001110002A_uf.1978tmp'
--------------------------------------------------------------
nucoord_0.1.8: Info: Copying input file to '3940_tmp_nucoord/nu60001110002A_uf.1978tmp'
nucoord_0.1.8: Info: Computing DET1 and DET2 coordinates
nucoord_0.1.8: Info: Running 'nucalcpos' 
nucoord_0.1.8: Command: nucalcpos alignfile=nuCalign20120101v001.fits pixposfile=CALDB chatter=3 saveraw2coord=no initseed=no outfile=3940_tmp_nucoord/nu60001110002A_uf.3940tmp history=yes infile=3940_tmp_nucoord/nu60001110002A_uf.1978tmp mastaspectfile=./60001110002_p/nu60001110002_mast.fits clobber=yes
---------------------------------------------------------------------
 		Running 'nucalcpos_0.2.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'3940_tmp_nucoord/nu60001110002A_uf.1978tmp'
Name of the output Event file                         :'3940_tmp_nucoord/nu60001110002A_uf.3940tmp'
Name of the input pixel location file                 :'CALDB'
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the input Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
nucalcpos_0.2.4: Info: Processing nuCalign20120101v001.fits file.
nucalcpos_0.2.4: Info: Processing '3940_tmp_nucoord/nu60001110002A_uf.1978tmp' file.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET0.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET1.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET2.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET3.
nucalcpos_0.2.4: Info: '3940_tmp_nucoord/nu60001110002A_uf.3940tmp' file successfully written.
---------------------------------------------------------------------
nucalcpos_0.2.4: Exit with success.
---------------------------------------------------------------------
nucoord_0.1.8: Info: 'nucalcpos' exit with success. DET1 and DET2 coordinates computed.
nucoord_0.1.8: Info: Computing X and Y coordinates
nucoord_0.1.8: Info: Running 'coordinator' 
nucoord_0.1.8: Command: coordinator attfile=3940_tmp_nucoord/nu60001110002_att.fits eventfile=3940_tmp_nucoord/nu60001110002A_uf.1978tmp eventext=EVENTS follow_sun=yes interpolation=LINEAR timemargin=32.0 skyxnull=-1 history=yes teldef=3940_tmp_nucoord/nuA20100101v002.teldef seed=-1956 dec=5.6889300000000E+01 ra=3.2188650000000E+02 skyynull=-1 randomize=yes chatter=3 timecol=TIME aberration=no
using LINEAR interpolation for aspecting
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34%
done
34% done
34% done
34% done
34% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
68% done
68% done
68% done
68% done
68% done
68% done
68% d
one
68% done
68% done
68% done
68% done
68% done
68% done
68% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
100% done
nucoord_0.1.8: Info: 'coordinator' exit with success. X and Y coordinates computed.
nucoord_0.1.8: Info: Moving temporary file '3940_tmp_nucoord/nu60001110002A_uf.1978tmp' to output file './60001110002_p/nu60001110002A_uf.1978tmp'
nucoord_0.1.8: Info: Output Event File './60001110002_p/nu60001110002A_uf.1978tmp' successfully written.
nucoord_0.1.8: Info: Creating Optical Axis File
nucoord_0.1.8: Info: Running 'nuskypos' 
nucoord_0.1.8: Command: nuskypos teldef=nuA20100101v002.teldef initseed=no optaxisfile=./60001110002_p/nu60001110002A_oa.fits history=yes clobber=yes pntdec=5.6889300000000E+01 aberration=no chatter=3 det1yref=350 pntra=3.2188650000000E+02 det1reffile=./60001110002_p/nu60001110002A_det1.fits det1xref=350 mastaspectfile=./60001110002_p/nu60001110002_mast.fits instrument=FPMA alignfile=nuCalign20120101v001.fits attfile=./60001110002_p/nu60001110002_att.fits
---------------------------------------------------------------------
 		Running 'nuskypos_0.1.3'
---------------------------------------------------------------------
nuskypos_0.1.3: Info: Processing nuCalign20120101v001.fits file.
nuskypos_0.1.3: Info: Processing ./60001110002_p/nu60001110002_att.fits file.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002A_oa.fits' file successfully written.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002A_det1.fits' file successfully written.
nucoord_0.1.8: Info: 'nuskypos' exit with success. './60001110002_p/nu60001110002A_oa.fits' Optical Axis File created.
----------------------------------------------------------
nucoord_0.1.8: Exit with success 
------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucoord' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated

============================================================
nupipeline_0.4.12: Stage  I: './60001110002_p/nu60001110002A_uf.evt' calibrated.
============================================================

nupipeline_0.4.12: Info: Copying OBEB HK File '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_obeb.hk.gz' in './60001110002_p/nu60001110002_obeb.hk'
nupipeline_0.4.12: Info: Copying Level 1 Event File '/home/jovyan/project/_data/NuSTAR/60001110002/event_uf/nu60001110002B_uf.evt.gz' in './60001110002_p/nu60001110002B_uf.evt.gz'
nupipeline_0.4.12: Info: the file './60001110002_p/nu60001110002B_uf.evt.gz' is compressed
nupipeline_0.4.12: Info: Unzip the file to allow FTOOLS processing

============================================================
nupipeline_0.4.12: Stage  I: Calibrating './60001110002_p/nu60001110002B_uf.evt'
============================================================

nupipeline_0.4.12: Info: Running 'nuflagbad' 
nupipeline_0.4.12: Command: nuflagbad infile=./60001110002_p/nu60001110002B_uf.evt bpfile=CALDB outbpfile=./60001110002_p/nu60001110002B_bp.fits dispixfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz history=yes chatter=3 userbpfile=NONE outfile=./60001110002_p/nu60001110002B_uf.1978tmp clobber=yes
---------------------------------------------------------------------
 		Running 'nuflagbad_0.1.8'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the input on-board disabled pixel file        :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz'
Name of the input on-ground bad pixel file            :'CALDB'
Name of the input user bad pixel file                 :'NONE'
Name of the output Bad Pixel file                     :'./60001110002_p/nu60001110002B_bp.fits'
---------------------------------------------------------------------
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuflagbad_0.1.8: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
nuflagbad_0.1.8: Info: Creating output bad pixel file.
---------------------------------------------------------------------
nuflagbad_0.1.8: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagbad' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuhotpix' 
nupipeline_0.4.12: Command: nuhotpix outhpfile=./60001110002_p/nu60001110002B_hp.fits infile=./60001110002_p/nu60001110002B_uf.evt binsize=600.0 cellsize=5 cleanflick=yes bthresh=6 outfile=./60001110002_p/nu60001110002B_uf.1978tmp logpos=-6.0 history=yes iterate=yes chatter=3 impfac=1.0 clobber=yes
---------------------------------------------------------------------
 		Running 'nuhotpix_0.1.7'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the output Hot Pixel file                     :'./60001110002_p/nu60001110002B_hp.fits'
Bin size (seconds) for count image generation         :'600.000000'
Search and flag flickering pixels?                      : yes
Iterate the search                                      : yes
---------------------------------------------------------------------
nuhotpix_0.1.7: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89745601.000000 - 89746201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746201.000000 - 89746801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746801.000000 - 89747401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy=23 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89747401.000000 - 89748001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748001.000000 - 89748601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748601.000000 - 89749201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749201.000000 - 89749801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749801.000000 - 89750401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89750401.000000 - 89751001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy=28 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751001.000000 - 89751601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751601.000000 - 89752201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752201.000000 - 89752801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=26 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752801.000000 - 89753401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89753401.000000 - 89754001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754001.000000 - 89754601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754601.000000 - 89755201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755201.000000 - 89755801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found H
ot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755801.000000 - 89756401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89756401.000000 - 89757001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757001.000000 - 89757601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757601.000000 - 89758201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758201.000000 - 89758801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758801.000000 - 89759401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89759401.000000 - 89760001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=11 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760001.000000 - 89760601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760601.000000 - 89761201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761201.000000 - 89761801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=27 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761801.000000 - 89762401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89762401.000000 - 89763001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763001.000000 - 89763601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0
.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763601.000000 - 89764201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764201.000000 - 89764801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764801.000000 - 89765401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89765401.000000 - 89766001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766001.000000 - 89766601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766601.000000 - 89767201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767201.000000 - 89767801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767801.000000 - 89768401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89768401.000000 - 89769001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769001.000000 - 89769601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769601.000000 - 89770201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770201.000000 - 89770801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel i
n rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770801.000000 - 89771401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89771401.000000 - 89772001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772001.000000 - 89772601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772601.000000 - 89773201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773201.000000 - 89773801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773801.000000 - 89774401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89774401.000000 - 89775001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775001.000000 - 89775601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775601.000000 - 89776201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=24 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776201.000000 - 89776801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776801.000000 - 89777401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89777401.000000 - 89778001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778001.000000 - 89778601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx
=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778601.000000 - 89779201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779201.000000 - 89779801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779801.000000 - 89780401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=22 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89780401.000000 - 89781001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781001.000000 - 89781601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781601.000000 - 89782201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=10 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782201.000000 - 89782801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782801.000000 - 89783401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in ra
wx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89783401.000000 - 89784001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784001.000000 - 89784601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784601.000000 - 89785201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785201.000000 - 89785801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785801.000000 - 89786401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89786401.000000 - 89787001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787001.000000 - 89787601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787601.000000 - 89788201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788201.000000 - 89788801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy= 9 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788801.000000 - 89789401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89789401.000000 - 89790001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790001.000000 - 89790601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=28 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790601.000000 - 89791201.000000]
nuhotpix_0.1.7: Info: Found Hot Pix
el in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791201.000000 - 89791801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791801.000000 - 89792401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89792401.000000 - 89793001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 2 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793001.000000 - 89793601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793601.000000 - 89794201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794201.000000 - 89794801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy=20 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794801.000000 - 89795401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89795401.000000 - 89796001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796001.000000 - 89796601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796601.000000 - 89797201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797201.000000 - 89797801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797801.000000 - 89798401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.
1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89798401.000000 - 89799001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799001.000000 - 89799601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799601.000000 - 89800201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800201.000000 - 89800801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800801.000000 - 89801401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89801401.000000 - 89802001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 5 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802001.000000 - 89802601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802601.000000 - 89803201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803201.000000 - 89803801.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803801.000000 - 89804401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89804401.000000 - 89805001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805001.000000 - 89805601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805601.000000 - 89806201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in r
awx=11 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806201.000000 - 89806801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=26 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806801.000000 - 89807401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89807401.000000 - 89808001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=11 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808001.000000 - 89808601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808601.000000 - 89809201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809201.000000 - 89809801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809801.000000 - 89810401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89810401.000000 - 89811001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811001.000000 - 89811601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811601.000000 - 89812201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812201.000000 - 89812801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812801.000000 - 89813401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixe
l in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89813401.000000 - 89814001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814001.000000 - 89814601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814601.000000 - 89815201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815201.000000 - 89815801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=21 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815801.000000 - 89816401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89816401.000000 - 89817001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817001.000000 - 89817601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817601.000000 - 89818201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818201.000000 - 89818801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818801.000000 - 89819401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=24 det_id=1

nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89819401.000000 - 89820001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820001.000000 - 89820601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820601.000000 - 89821201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821201.000000 - 89821801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821801.000000 - 89822401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89822401.000000 - 89823001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823001.000000 - 89823601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823601.000000 - 89824201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824201.000000 - 89824801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824801.000000 - 89825401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89825401.000000 - 89826001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826001.000000 - 89826601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826601.000000 - 89827201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=31 det_id=3 
nuhotpix_0.1
.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827201.000000 - 89827801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827801.000000 - 89828401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89828401.000000 - 89829001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829001.000000 - 89829601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829601.000000 - 89830201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830201.000000 - 89830801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830801.000000 - 89831401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89831401.000000 - 89832001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=10 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832001.000000 - 89832601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832601.000000 - 89833201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833201.000000 - 89833801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833801.000000 - 89834401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found
 Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89834401.000000 - 89834701.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
nuhotpix_0.1.7: Info: Creating output hot pixel file.
---------------------------------------------------------------------
nuhotpix_0.1.7: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuhotpix' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpha' 
nupipeline_0.4.12: Command: nucalcpha chatter=3 gradefile=CALDB cleancols=yes clobber=yes timerise=0.0016 phaparfile=CALDB history=yes evtthr=55 outfile=./60001110002_p/nu60001110002B_uf.1978tmp offsetfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt
---------------------------------------------------------------------
 		Running 'nucalcpha_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the input Offset file                         :'CALDB'
Name of the input Grade file                          :'CALDB'
Name of the input PHAPAR file                         :'CALDB'
Delete temporary columns                              : yes
---------------------------------------------------------------------
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/grade/nuCgrade20100101v002.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/cap_offset/nuBoffset20100101v001.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET0.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET1.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET2.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET3.
nucalcpha_0.2.2: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
---------------------------------------------------
nucalcpha_0.2.2: Info: 		 NuSTAR GRADES
nucalcpha_0.2.2: Info: Total events                            808921
nucalcpha_0.2.2: Info: Total events with grade  0              149367   18.4650%
nucalcpha_0.2.2: Info: Total events with grade  1               19799    2.4476%
nucalcpha_0.2.2: Info: Total events with grade  2               13297    1.6438%
nucalcpha_0.2.2: Info: Total events with grade  3               16496    2.0393%
nucalcpha_0.2.2: Info: Total events with grade  4               15602    1.9287%
nucalcpha_0.2.2: Info: Total events with grade  5                 919    0.1136%
nucalcpha_0.2.2: Info: Total events with grade  6                 854    0.1056%
nucalcpha_0.2.2: Info: Total events with grade  7                1077    0.1331%
nucalcpha_0.2.2: Info: Total events with grade  8                1434    0.1773%
nucalcpha_0.2.2: Info: Total events with grade  9                1267    0.1566%
nucalcpha_0.2.2: Info: Total events with grade 10                1139    0.1408%
nucalcpha_0.2.2: Info: Total events with grade 11                1277    0.1579%
nucalcpha_0.2.2: Info: Total events with grade 12                1425    0.1762%
nucalcpha_0.2.2: Info: Total events with grade 13                 384    0.0475%
nucalcpha_0.2.2: Info: Total events with grade 14                 381    0.0471%
nucalcpha_0.2.2: Info: Total events with grade 15                 417    0.0516%
nucalcpha_0.2.2: Info: Total events with grade 16                 420    0.0519%
nucalcpha_0.2.2: Info: Total events with grade 17                 414    0.0512%
nucalcpha_0.2.2: Info: Total events with grade 18                 357    0.0441%
nucalcpha_0.2.2: Info: Total events with grade 19                 393    0.0486%
nucalcpha_0.2.2: Info: Total events with grade 20                 517    0.0639%
nucalcpha_0.2.2: Info: Total events with grade 21                1490    0.1842%
nucalcpha_0.2.2: Info: Total events with grade 22                1482    0.1832%
nucalcpha_0.2.2: Info: Total events with grade 23                1440    0.1780%
nucalcpha_0.2.2: Info: Total events with grade 24                1436    0.1775%
nucalcpha_0.2.2: Info: Total events with grade 25                1271    0.1571%
nucalcpha_0.2.2: Info: Total events with grade 26                 460
0.0569%
nucalcpha_0.2.2: Info: Total events with grade 27                 124    0.0153%
nucalcpha_0.2.2: Info: Total events with grade 28                 106    0.0131%
nucalcpha_0.2.2: Info: Total events with grade 29                  73    0.0090%
nucalcpha_0.2.2: Info: Total events with grade 30                  95    0.0117%
nucalcpha_0.2.2: Info: Total events with grade 31                 156    0.0193%
nucalcpha_0.2.2: Info: Total events with grade 32              573552   70.9033%
nucalcpha_0.2.2: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpha_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpha' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpi' 
nupipeline_0.4.12: Command: nucalcpi outfile=./60001110002_p/nu60001110002B_uf.1978tmp hkfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz clobber=yes chatter=3 clcfilterfile=CALDB gainfile=CALDB history=yes temperature=5 clcfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt
---------------------------------------------------------------------
 		Running 'nucalcpi_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the input HK Header file                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz'
Name of the input GAIN file                           :'CALDB'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
---------------------------------------------------------------------
nucalcpi_0.2.2: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nucalcpi_0.2.2: Info: Processing /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz file.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET3.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET3.
nucalcpi_0.2.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuCclcfilter20100101v001.fits file.
nucalcpi_0.2.2: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpi_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpi' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuflagevt' 
nupipeline_0.4.12: Command: nuflagevt evtcutfile=CALDB chatter=3 depthcutfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt outfile=./60001110002_p/nu60001110002B_uf.1978tmp history=yes clobber=yes
---------------------------------------------------------------------
 		Running 'nuflagevt_0.1.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
---------------------------------------------------------------------
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET0_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET1_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET2_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET3_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET0_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET1_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET2_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET3_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET0.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET1.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET2.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET3.
nuflagevt_0.1.4: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuflagevt_0.1.4: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nuflagevt_0.1.4: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagevt' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucoord' 
nupipeline_0.4.12: Command: nucoord det1xref=350 infile=./60001110002_p/nu60001110002B_uf.evt aberration=no optaxisfile=./60001110002_p/nu60001110002B_oa.fits attfile=./60001110002_p/nu60001110002_att.fits det1reffile=./60001110002_p/nu60001110002B_det1.fits mastaspectfile=./60001110002_p/nu60001110002_mast.fits initseed=no attinterpol=LINEAR alignfile=nuCalign20120101v001.fits outfile=./60001110002_p/nu60001110002B_uf.1978tmp det1yref=350 seedcoordinator=-1956 pntdec=5.6889300000000E+01 history=yes follow_sun=yes timemargin=32.0 chatter=3 pixposfile=CALDB clobber=yes pntra=3.2188650000000E+02 teldef=nuB20100101v002.teldef randomizecoordinator=yes
--------------------------------------------------------------
             Running ' nucoord version 0.1.8 '
--------------------------------------------------------------
nucoord_0.1.8: Info: Name of the Input Event File  './60001110002_p/nu60001110002B_uf.evt'
nucoord_0.1.8: Info: Name of the Output Event File './60001110002_p/nu60001110002B_uf.1978tmp'
--------------------------------------------------------------
nucoord_0.1.8: Info: Copying input file to '4343_tmp_nucoord/nu60001110002B_uf.1978tmp'
nucoord_0.1.8: Info: Computing DET1 and DET2 coordinates
nucoord_0.1.8: Info: Running 'nucalcpos' 
nucoord_0.1.8: Command: nucalcpos saveraw2coord=no outfile=4343_tmp_nucoord/nu60001110002B_uf.4343tmp history=yes chatter=3 initseed=no alignfile=nuCalign20120101v001.fits clobber=yes mastaspectfile=./60001110002_p/nu60001110002_mast.fits pixposfile=CALDB infile=4343_tmp_nucoord/nu60001110002B_uf.1978tmp
---------------------------------------------------------------------
 		Running 'nucalcpos_0.2.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'4343_tmp_nucoord/nu60001110002B_uf.1978tmp'
Name of the output Event file                         :'4343_tmp_nucoord/nu60001110002B_uf.4343tmp'
Name of the input pixel location file                 :'CALDB'
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the input Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
nucalcpos_0.2.4: Info: Processing nuCalign20120101v001.fits file.
nucalcpos_0.2.4: Info: Processing '4343_tmp_nucoord/nu60001110002B_uf.1978tmp' file.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET0.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET1.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET2.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET3.
nucalcpos_0.2.4: Warning: No mast aspect data for TIME=89745601.005071
nucalcpos_0.2.4: Info: '4343_tmp_nucoord/nu60001110002B_uf.4343tmp' file successfully written.
---------------------------------------------------------------------
nucalcpos_0.2.4: Exit with success.
---------------------------------------------------------------------
nucoord_0.1.8: Info: 'nucalcpos' exit with success. DET1 and DET2 coordinates computed.
nucoord_0.1.8: Info: Computing X and Y coordinates
nucoord_0.1.8: Info: Running 'coordinator' 
nucoord_0.1.8: Command: coordinator eventext=EVENTS seed=-1956 skyxnull=-1 randomize=yes teldef=4343_tmp_nucoord/nuB20100101v002.teldef aberration=no interpolation=LINEAR eventfile=4343_tmp_nucoord/nu60001110002B_uf.1978tmp skyynull=-1 timecol=TIME ra=3.2188650000000E+02 timemargin=32.0 attfile=4343_tmp_nucoord/nu60001110002_att.fits history=yes chatter=3 dec=5.6889300000000E+01 follow_sun=yes
using LINEAR interpolation for aspecting
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
32% done
32% done
32% done
32% d
one
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% do
ne
63% done
63% done
63% done
63% done
63% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% don
e
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
100% done
nucoord_0.1.8: Info: 'coordinator' exit with success. X and Y coordinates computed.
nucoord_0.1.8: Info: Moving temporary file '4343_tmp_nucoord/nu60001110002B_uf.1978tmp' to output file './60001110002_p/nu60001110002B_uf.1978tmp'
nucoord_0.1.8: Info: Output Event File './60001110002_p/nu60001110002B_uf.1978tmp' successfully written.
nucoord_0.1.8: Info: Creating Optical Axis File
nucoord_0.1.8: Info: Running 'nuskypos' 
nucoord_0.1.8: Command: nuskypos pntdec=5.6889300000000E+01 initseed=no clobber=yes attfile=./60001110002_p/nu60001110002_att.fits det1yref=350 det1reffile=./60001110002_p/nu60001110002B_det1.fits history=yes chatter=3 instrument=FPMB det1xref=350 optaxisfile=./60001110002_p/nu60001110002B_oa.fits alignfile=nuCalign20120101v001.fits pntra=3.2188650000000E+02 mastaspectfile=./60001110002_p/nu60001110002_mast.fits aberration=no teldef=nuB20100101v002.teldef
---------------------------------------------------------------------
 		Running 'nuskypos_0.1.3'
---------------------------------------------------------------------
nuskypos_0.1.3: Info: Processing nuCalign20120101v001.fits file.
nuskypos_0.1.3: Info: Processing ./60001110002_p/nu60001110002_att.fits file.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002B_oa.fits' file successfully written.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002B_det1.fits' file successfully written.
nucoord_0.1.8: Info: 'nuskypos' exit with success. './60001110002_p/nu60001110002B_oa.fits' Optical Axis File created.
----------------------------------------------------------
nucoord_0.1.8: Exit with success 
------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucoord' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated

============================================================
nupipeline_0.4.12: Stage  I: './60001110002_p/nu60001110002B_uf.evt' calibrated.
============================================================


============================================================
                  NuSTAR pipeline Report
 Task: nupipeline Version: 0.4.12 Release Date: 2023-11-16
============================================================
evt: .... Optical Axis   RA from  RA_PNT keyword : 3.2188650000000E+02(deg)
evt: .... Optical Axis  DEC from DEC_PNT keyword : 5.6889300000000E+01(deg)
FPMA: .... Stage    I: Calibrating Level 1 Event File: './60001110002_p/nu60001110002A_uf.evt'
FPMA: .... Stage    I: Calibrated Event File: './60001110002_p/nu60001110002A_uf.evt'
FPMB: .... Stage    I: Calibrating Level 1 Event File: './60001110002_p/nu60001110002B_uf.evt'
FPMB: .... Stage    I: Calibrated Event File: './60001110002_p/nu60001110002B_uf.evt'

=============================================================================================
nupipeline_0.4.12: Exit with no errors - Tue Feb  3 11:21:29 EST 2026

=============================================================================================
=============================================================================================

    If the NuSTARDAS software was helpful for your research work, the following
    acknowledgement would be appreciated: "This research has made use of the
    NuSTAR Data Analysis Software (NuSTARDAS) jointly developed by the ASI Space Science
    Data Center (SSDC, Italy) and the California Institute of Technology (Caltech, USA)."

=============================================================================================
=============================================================================================
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPMA - - TELDEF 2012-11-04 17:21:07 "-" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuA20100101v002.teldef 0
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPMB - - TELDEF 2012-11-04 17:21:07 "-" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuB20100101v002.teldef 0
nupipeline_0.4.12: Info: CallQuzcif: Running quzcif NuSTAR FPM - - ALIGNMENT 2012-11-04 17:21:07 "type.eq.systems" retrieve+ clobber=yes
CallQuzcif: Info: Output 'quzcif' Command: 
CallQuzcif: Info:nuCalign20120101v001.fits 1
------------------------------------------------------------
               Setting Optical Axis Direction
------------------------------------------------------------
nupipeline_0.4.12: Info: 'pntra' and/or 'pntdec' input parameter set to POINT
nupipeline_0.4.12: Info: getting default S/C direction
nupipeline_0.4.12: Info: Optical Axis   RA : 3.2188650000000E+02(deg)
nupipeline_0.4.12: Info: Optical Axis  DEC : 5.6889300000000E+01(deg)
nupipeline_0.4.12: Info: Running 'numetrology' 
nupipeline_0.4.12: Command: numetrology clobber=yes outpsdfilecor=./60001110002_p/nu60001110002_psdcorr.fits chatter=3 history=yes mastaspectfile=./60001110002_p/nu60001110002_mast.fits metgridfile=CALDB metflag=yes alignfile=nuCalign20120101v001.fits metrologyfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz inpsdfilecor= psdcal=yes outpsdfile=./60001110002_p/nu60001110002_psd.fits
---------------------------------------------------------------------
 		Running 'numetrology_0.1.9'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Metrology File                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz'
Name of the input Metrology Grid File                 :'CALDB'
Name of the output Position Sensing Detector File     :'./60001110002_p/nu60001110002_psd.fits'
Name of the output corrected Position Sensing Detector File :'./60001110002_p/nu60001110002_psdcorr.fits'
Apply PSD linearization to the corrected Position Sensing Detector File : yes
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the output Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
numetrology_0.1.9: Warning: /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz file (ext 'MET_CMP') is empty.
numetrology_0.1.9: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/metrology/nuCmetgrid20100101v002.fits' file for metgrid data of PSD0.
numetrology_0.1.9: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/metrology/nuCmetgrid20100101v002.fits' file for metgrid data of PSD1.
numetrology_0.1.9: Warning: /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_met.fits.gz file (ext 'MET_CMP') is empty.
numetrology_0.1.9: Info: Processing nuCalign20120101v001.fits file.
---------------------------------------------------------------------
numetrology_0.1.9: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'numetrology' exit with success. './60001110002_p/nu60001110002_mast.fits' mast aspect solution file created.
nupipeline_0.4.12: Info: Running 'nuattcorr' 
nupipeline_0.4.12: Command: nuattcorr chatter=3 attfile=/home/jovyan/project/_data/NuSTAR/60001110002/auxil/nu60001110002_att.fits.gz chuoffsetfile=CALDB outattfile=./60001110002_p/nu60001110002_att.fits clobber=yes history=yes
---------------------------------------------------------------------
 		Running 'nuattcorr_0.1.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Attitude file                       :'/home/jovyan/project/_data/NuSTAR/60001110002/auxil/nu60001110002_att.fits.gz'
Name of the output Corrected Attitude file            :'./60001110002_p/nu60001110002_att.fits'
Name of the input CHUs Quaternion Offset FITS file    :'CALDB'
---------------------------------------------------------------------
nuattcorr_0.1.2: Info: Creating '3587_tmp_nuattcorr/3587in_nu60001110002_att.fits.gz' symbolic link to input Attitude file.
nuattcorr_0.1.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuCchuoffset20100101v001.fits file.
nuattcorr_0.1.2: Info: executing 'ftcopy infile='3587_tmp_nuattcorr/3587in_nu60001110002_att.fits.gz[col @3587_tmp_nuattcorr/3587in.col]' outfile=3587_tmp_nuattcorr/3587out_nu60001110002_att.fits'
nuattcorr_0.1.2: Info: './60001110002_p/nu60001110002_att.fits' file successfully written.
---------------------------------------------------------------------
nuattcorr_0.1.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuattcorr' exit with success. './60001110002_p/nu60001110002_att.fits' corrected attitude file created.
nupipeline_0.4.12: Info: Copying OBEB HK File '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_obeb.hk.gz' in './60001110002_p/nu60001110002_obeb.hk'
nupipeline_0.4.12: Info: Copying Level 1 Event File '/home/jovyan/project/_data/NuSTAR/60001110002/event_uf/nu60001110002A_uf.evt.gz' in './60001110002_p/nu60001110002A_uf.evt.gz'
nupipeline_0.4.12: Info: the file './60001110002_p/nu60001110002A_uf.evt.gz' is compressed
nupipeline_0.4.12: Info: Unzip the file to allow FTOOLS processing

============================================================
nupipeline_0.4.12: Stage  I: Calibrating './60001110002_p/nu60001110002A_uf.evt'
============================================================

nupipeline_0.4.12: Info: Running 'nuflagbad' 
nupipeline_0.4.12: Command: nuflagbad userbpfile=NONE chatter=3 clobber=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt bpfile=CALDB history=yes dispixfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz outbpfile=./60001110002_p/nu60001110002A_bp.fits
---------------------------------------------------------------------
 		Running 'nuflagbad_0.1.8'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the input on-board disabled pixel file        :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz'
Name of the input on-ground bad pixel file            :'CALDB'
Name of the input user bad pixel file                 :'NONE'
Name of the output Bad Pixel file                     :'./60001110002_p/nu60001110002A_bp.fits'
---------------------------------------------------------------------
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuAbadpix20100101v003.fits' file for on-ground bad pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_dspx.fits.gz' file for on-board disabled pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuflagbad_0.1.8: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
nuflagbad_0.1.8: Info: Creating output bad pixel file.
---------------------------------------------------------------------
nuflagbad_0.1.8: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagbad' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuhotpix' 
nupipeline_0.4.12: Command: nuhotpix outhpfile=./60001110002_p/nu60001110002A_hp.fits infile=./60001110002_p/nu60001110002A_uf.evt binsize=600.0 cellsize=5 cleanflick=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp bthresh=6 logpos=-6.0 history=yes chatter=3 iterate=yes clobber=yes impfac=1.0
---------------------------------------------------------------------
 		Running 'nuhotpix_0.1.7'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the output Hot Pixel file                     :'./60001110002_p/nu60001110002A_hp.fits'
Bin size (seconds) for count image generation         :'600.000000'
Search and flag flickering pixels?                      : yes
Iterate the search                                      : yes
---------------------------------------------------------------------
nuhotpix_0.1.7: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89745601.000000 - 89746201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746201.000000 - 89746801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy= 5 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746801.000000 - 89747401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89747401.000000 - 89748001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748001.000000 - 89748601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748601.000000 - 89749201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749201.000000 - 89749801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749801.000000 - 89750401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy= 7 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89750401.000000 - 89751001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751001.000000 - 89751601.000000]
nuhotpix_0.1.7: Info
: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751601.000000 - 89752201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752201.000000 - 89752801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752801.000000 - 89753401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89753401.000000 - 89754001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754001.000000 - 89754601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754601.000000 - 89755201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755201.000000 - 89755801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755801.000000 - 89756401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89756401.000000 - 89757001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757001.000000 - 89757601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 7 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757601.000000 - 89758201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=14 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758201.000000 - 89758801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758801.000000 - 89759401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89759401.000000 - 89760001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760001.000000 - 89760601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760601.000000 - 89761201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy=13 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 2 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761201.000000 - 89761801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 3 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761801.000000 - 89762401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89762401.000000 - 89763001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=11 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763001.000000 - 89763601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763601.000000 - 89764201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764201.000000 - 89764801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764801.000000 - 89765401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count
 maps for events with TIME included in [89765401.000000 - 89766001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=15 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766001.000000 - 89766601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766601.000000 - 89767201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767201.000000 - 89767801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767801.000000 - 89768401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89768401.000000 - 89769001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769001.000000 - 89769601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769601.000000 - 89770201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770201.000000 - 89770801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770801.000000 - 89771401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89771401.000000 - 89772001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772001.000000 - 89772601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=24 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772601.000000 - 89773201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info
: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773201.000000 - 89773801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773801.000000 - 89774401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89774401.000000 - 89775001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775001.000000 - 89775601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775601.000000 - 89776201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776201.000000 - 89776801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776801.000000 - 89777401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89777401.000000 - 89778001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778001.000000 - 89778601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778601.000000 - 89779201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779201.000000 - 89779801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779801.000000 - 89780401.000000]

nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy= 0 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89780401.000000 - 89781001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781001.000000 - 89781601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781601.000000 - 89782201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782201.000000 - 89782801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782801.000000 - 89783401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=16 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89783401.000000 - 89784001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784001.000000 - 89784601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=21 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=15 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784601.000000 - 89785201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785201.000000 - 89785801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785801.000000 - 89786401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89786401.000000 - 89787001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 4
det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787001.000000 - 89787601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787601.000000 - 89788201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788201.000000 - 89788801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 4 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788801.000000 - 89789401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89789401.000000 - 89790001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy= 7 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790001.000000 - 89790601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=14 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=29 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790601.000000 - 89791201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791201.000000 - 89791801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791801.000000 - 89792401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89792401.000000 - 89793001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events
with TIME included in [89793001.000000 - 89793601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793601.000000 - 89794201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794201.000000 - 89794801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794801.000000 - 89795401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89795401.000000 - 89796001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=28 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796001.000000 - 89796601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796601.000000 - 89797201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797201.000000 - 89797801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797801.000000 - 89798401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89798401.000000 - 89799001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799001.000000 - 89799601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799601.000000 - 89800201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800201.000000 - 89800801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800801.00000
0 - 89801401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 0 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89801401.000000 - 89802001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802001.000000 - 89802601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802601.000000 - 89803201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803201.000000 - 89803801.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803801.000000 - 89804401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89804401.000000 - 89805001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805001.000000 - 89805601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805601.000000 - 89806201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806201.000000 - 89806801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806801.000000 - 89807401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89807401.000000 - 89808001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: I
ter 1 Found Hot Pixel in rawx=12 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808001.000000 - 89808601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808601.000000 - 89809201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809201.000000 - 89809801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809801.000000 - 89810401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89810401.000000 - 89811001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811001.000000 - 89811601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811601.000000 - 89812201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812201.000000 - 89812801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812801.000000 - 89813401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89813401.000000 - 89814001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814001.000000 - 89814601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=28 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814601.000000 - 89815201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy= 4 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel
 in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815201.000000 - 89815801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815801.000000 - 89816401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89816401.000000 - 89817001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 9 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 3 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817001.000000 - 89817601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817601.000000 - 89818201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=27 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818201.000000 - 89818801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818801.000000 - 89819401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89819401.000000 - 89820001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820001.000000 - 89820601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820601.000000 - 89821201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=15 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821201.000000 - 89821801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821801.000000 - 89822401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89822401.000000 - 89823001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=22 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info:
 Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823001.000000 - 89823601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy=25 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823601.000000 - 89824201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824201.000000 - 89824801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=27 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824801.000000 - 89825401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89825401.000000 - 89826001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826001.000000 - 89826601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=24 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826601.000000 - 89827201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827201.000000 - 89827801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827801.000000 - 89828401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=27 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89828401.000000 - 89829001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=3
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=16 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829001.000000 - 89829601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829601.000000 - 89830201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830201.000000 - 89830801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830801.000000 - 89831401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=31 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89831401.000000 - 89832001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832001.000000 - 89832601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832601.000000 - 89833201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833201.000000 - 89833801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833801.000000 - 89834401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89834401.000000 - 89834701.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=12 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
nuhotpix_0.1.7: Info: Creating output hot pixel file.
---------------------------------------------------------------------
nuhotpix_0.1.7: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuhotpix' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpha' 
nupipeline_0.4.12: Command: nucalcpha clobber=yes cleancols=yes gradefile=CALDB chatter=3 evtthr=55 history=yes phaparfile=CALDB timerise=0.0016 outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt offsetfile=CALDB
---------------------------------------------------------------------
 		Running 'nucalcpha_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
Name of the input Offset file                         :'CALDB'
Name of the input Grade file                          :'CALDB'
Name of the input PHAPAR file                         :'CALDB'
Delete temporary columns                              : yes
---------------------------------------------------------------------
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/grade/nuCgrade20100101v002.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/cap_offset/nuAoffset20100101v001.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET0.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET1.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET2.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAphapar20100101v001.fits' file for PHAPAR data of detector DET3.
nucalcpha_0.2.2: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
---------------------------------------------------
nucalcpha_0.2.2: Info: 		 NuSTAR GRADES
nucalcpha_0.2.2: Info: Total events                            750717
nucalcpha_0.2.2: Info: Total events with grade  0              136341   18.1614%
nucalcpha_0.2.2: Info: Total events with grade  1               17295    2.3038%
nucalcpha_0.2.2: Info: Total events with grade  2               14363    1.9132%
nucalcpha_0.2.2: Info: Total events with grade  3               15323    2.0411%
nucalcpha_0.2.2: Info: Total events with grade  4               14675    1.9548%
nucalcpha_0.2.2: Info: Total events with grade  5                1433    0.1909%
nucalcpha_0.2.2: Info: Total events with grade  6                1244    0.1657%
nucalcpha_0.2.2: Info: Total events with grade  7                1387    0.1848%
nucalcpha_0.2.2: Info: Total events with grade  8                1411    0.1880%
nucalcpha_0.2.2: Info: Total events with grade  9                1628    0.2169%
nucalcpha_0.2.2: Info: Total events with grade 10                1620    0.2158%
nucalcpha_0.2.2: Info: Total events with grade 11                1738    0.2315%
nucalcpha_0.2.2: Info: Total events with grade 12                1621    0.2159%
nucalcpha_0.2.2: Info: Total events with grade 13                 338    0.0450%
nucalcpha_0.2.2: Info: Total events with grade 14                 396    0.0527%
nucalcpha_0.2.2: Info: Total events with grade 15                 412    0.0549%
nucalcpha_0.2.2: Info: Total events with grade 16                 342    0.0456%
nucalcpha_0.2.2: Info: Total events with grade 17                 438    0.0583%
nucalcpha_0.2.2: Info: Total events with grade 18                 354    0.0472%
nucalcpha_0.2.2: Info: Total events with grade 19                 385    0.0513%
nucalcpha_0.2.2: Info: Total events with grade 20                 389    0.0518%
nucalcpha_0.2.2: Info: Total events with grade 21                1299    0.1730%
nucalcpha_0.2.2: Info: Total events with grade 22                1255    0.1672%
nucalcpha_0.2.2: Info: Total events with grade 23                1287    0.1714%
nucalcpha_0.2.2: Info: Total events with grade 24                1268    0.1689%
nucalcpha_0.2.2: Info: Total events with grade 25                3063    0.4080%
nucalcpha_0.2.2: Info: Total events with grade 26                 328
0.0437%
nucalcpha_0.2.2: Info: Total events with grade 27                 131    0.0174%
nucalcpha_0.2.2: Info: Total events with grade 28                  81    0.0108%
nucalcpha_0.2.2: Info: Total events with grade 29                  71    0.0095%
nucalcpha_0.2.2: Info: Total events with grade 30                  82    0.0109%
nucalcpha_0.2.2: Info: Total events with grade 31                 340    0.0453%
nucalcpha_0.2.2: Info: Total events with grade 32              528379   70.3832%
nucalcpha_0.2.2: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpha_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpha' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpi' 
nupipeline_0.4.12: Command: nucalcpi chatter=3 outfile=./60001110002_p/nu60001110002A_uf.1978tmp clobber=yes hkfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz clcfile=CALDB infile=./60001110002_p/nu60001110002A_uf.evt gainfile=CALDB clcfilterfile=CALDB temperature=5 history=yes
---------------------------------------------------------------------
 		Running 'nucalcpi_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the input HK Header file                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz'
Name of the input GAIN file                           :'CALDB'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
---------------------------------------------------------------------
nucalcpi_0.2.2: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nucalcpi_0.2.2: Info: Processing /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002A_fpm.hk.gz file.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuAgain20100101v011.fits' file for gain data of detector DET3.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuAclc20100101v004.fits' file for charge loss correction data of detector DET3.
nucalcpi_0.2.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuCclcfilter20100101v001.fits file.
nucalcpi_0.2.2: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpi_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpi' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuflagevt' 
nupipeline_0.4.12: Command: nuflagevt clobber=yes history=yes outfile=./60001110002_p/nu60001110002A_uf.1978tmp infile=./60001110002_p/nu60001110002A_uf.evt evtcutfile=CALDB chatter=3 depthcutfile=CALDB
---------------------------------------------------------------------
 		Running 'nuflagevt_0.1.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002A_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002A_uf.1978tmp'
---------------------------------------------------------------------
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET0_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET1_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET2_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET3_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET0_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET1_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET2_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAdepthcut20100101v004.fits' file for depth cut data of detector DET3_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET0.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET1.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET2.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuAevtcut20100101v001.fits' file for event cut data of detector DET3.
nuflagevt_0.1.4: Info: Processing './60001110002_p/nu60001110002A_uf.evt' file.
nuflagevt_0.1.4: Info: './60001110002_p/nu60001110002A_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nuflagevt_0.1.4: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagevt' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucoord' 
nupipeline_0.4.12: Command: nucoord pntra=3.2188650000000E+02 randomizecoordinator=yes teldef=nuA20100101v002.teldef pixposfile=CALDB clobber=yes timemargin=32.0 chatter=3 history=yes follow_sun=yes seedcoordinator=-1956 pntdec=5.6889300000000E+01 det1yref=350 initseed=no outfile=./60001110002_p/nu60001110002A_uf.1978tmp attinterpol=LINEAR alignfile=nuCalign20120101v001.fits mastaspectfile=./60001110002_p/nu60001110002_mast.fits attfile=./60001110002_p/nu60001110002_att.fits det1reffile=./60001110002_p/nu60001110002A_det1.fits optaxisfile=./60001110002_p/nu60001110002A_oa.fits aberration=no infile=./60001110002_p/nu60001110002A_uf.evt det1xref=350
--------------------------------------------------------------
             Running ' nucoord version 0.1.8 '
--------------------------------------------------------------
nucoord_0.1.8: Info: Name of the Input Event File  './60001110002_p/nu60001110002A_uf.evt'
nucoord_0.1.8: Info: Name of the Output Event File './60001110002_p/nu60001110002A_uf.1978tmp'
--------------------------------------------------------------
nucoord_0.1.8: Info: Copying input file to '3940_tmp_nucoord/nu60001110002A_uf.1978tmp'
nucoord_0.1.8: Info: Computing DET1 and DET2 coordinates
nucoord_0.1.8: Info: Running 'nucalcpos' 
nucoord_0.1.8: Command: nucalcpos alignfile=nuCalign20120101v001.fits pixposfile=CALDB chatter=3 saveraw2coord=no initseed=no outfile=3940_tmp_nucoord/nu60001110002A_uf.3940tmp history=yes infile=3940_tmp_nucoord/nu60001110002A_uf.1978tmp mastaspectfile=./60001110002_p/nu60001110002_mast.fits clobber=yes
---------------------------------------------------------------------
 		Running 'nucalcpos_0.2.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'3940_tmp_nucoord/nu60001110002A_uf.1978tmp'
Name of the output Event file                         :'3940_tmp_nucoord/nu60001110002A_uf.3940tmp'
Name of the input pixel location file                 :'CALDB'
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the input Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
nucalcpos_0.2.4: Info: Processing nuCalign20120101v001.fits file.
nucalcpos_0.2.4: Info: Processing '3940_tmp_nucoord/nu60001110002A_uf.1978tmp' file.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET0.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET1.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET2.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuApixpos20100101v007.fits' file for pixpos data of detector DET3.
nucalcpos_0.2.4: Info: '3940_tmp_nucoord/nu60001110002A_uf.3940tmp' file successfully written.
---------------------------------------------------------------------
nucalcpos_0.2.4: Exit with success.
---------------------------------------------------------------------
nucoord_0.1.8: Info: 'nucalcpos' exit with success. DET1 and DET2 coordinates computed.
nucoord_0.1.8: Info: Computing X and Y coordinates
nucoord_0.1.8: Info: Running 'coordinator' 
nucoord_0.1.8: Command: coordinator attfile=3940_tmp_nucoord/nu60001110002_att.fits eventfile=3940_tmp_nucoord/nu60001110002A_uf.1978tmp eventext=EVENTS follow_sun=yes interpolation=LINEAR timemargin=32.0 skyxnull=-1 history=yes teldef=3940_tmp_nucoord/nuA20100101v002.teldef seed=-1956 dec=5.6889300000000E+01 ra=3.2188650000000E+02 skyynull=-1 randomize=yes chatter=3 timecol=TIME aberration=no
using LINEAR interpolation for aspecting
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34%
done
34% done
34% done
34% done
34% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
68% done
68% done
68% done
68% done
68% done
68% done
68% d
one
68% done
68% done
68% done
68% done
68% done
68% done
68% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
100% done
nucoord_0.1.8: Info: 'coordinator' exit with success. X and Y coordinates computed.
nucoord_0.1.8: Info: Moving temporary file '3940_tmp_nucoord/nu60001110002A_uf.1978tmp' to output file './60001110002_p/nu60001110002A_uf.1978tmp'
nucoord_0.1.8: Info: Output Event File './60001110002_p/nu60001110002A_uf.1978tmp' successfully written.
nucoord_0.1.8: Info: Creating Optical Axis File
nucoord_0.1.8: Info: Running 'nuskypos' 
nucoord_0.1.8: Command: nuskypos teldef=nuA20100101v002.teldef initseed=no optaxisfile=./60001110002_p/nu60001110002A_oa.fits history=yes clobber=yes pntdec=5.6889300000000E+01 aberration=no chatter=3 det1yref=350 pntra=3.2188650000000E+02 det1reffile=./60001110002_p/nu60001110002A_det1.fits det1xref=350 mastaspectfile=./60001110002_p/nu60001110002_mast.fits instrument=FPMA alignfile=nuCalign20120101v001.fits attfile=./60001110002_p/nu60001110002_att.fits
---------------------------------------------------------------------
 		Running 'nuskypos_0.1.3'
---------------------------------------------------------------------
nuskypos_0.1.3: Info: Processing nuCalign20120101v001.fits file.
nuskypos_0.1.3: Info: Processing ./60001110002_p/nu60001110002_att.fits file.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002A_oa.fits' file successfully written.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002A_det1.fits' file successfully written.
nucoord_0.1.8: Info: 'nuskypos' exit with success. './60001110002_p/nu60001110002A_oa.fits' Optical Axis File created.
----------------------------------------------------------
nucoord_0.1.8: Exit with success 
------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucoord' exit with success. './60001110002_p/nu60001110002A_uf.evt' updated

============================================================
nupipeline_0.4.12: Stage  I: './60001110002_p/nu60001110002A_uf.evt' calibrated.
============================================================

nupipeline_0.4.12: Info: Copying OBEB HK File '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002_obeb.hk.gz' in './60001110002_p/nu60001110002_obeb.hk'
nupipeline_0.4.12: Info: Copying Level 1 Event File '/home/jovyan/project/_data/NuSTAR/60001110002/event_uf/nu60001110002B_uf.evt.gz' in './60001110002_p/nu60001110002B_uf.evt.gz'
nupipeline_0.4.12: Info: the file './60001110002_p/nu60001110002B_uf.evt.gz' is compressed
nupipeline_0.4.12: Info: Unzip the file to allow FTOOLS processing

============================================================
nupipeline_0.4.12: Stage  I: Calibrating './60001110002_p/nu60001110002B_uf.evt'
============================================================

nupipeline_0.4.12: Info: Running 'nuflagbad' 
nupipeline_0.4.12: Command: nuflagbad infile=./60001110002_p/nu60001110002B_uf.evt bpfile=CALDB outbpfile=./60001110002_p/nu60001110002B_bp.fits dispixfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz history=yes chatter=3 userbpfile=NONE outfile=./60001110002_p/nu60001110002B_uf.1978tmp clobber=yes
---------------------------------------------------------------------
 		Running 'nuflagbad_0.1.8'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the input on-board disabled pixel file        :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz'
Name of the input on-ground bad pixel file            :'CALDB'
Name of the input user bad pixel file                 :'NONE'
Name of the output Bad Pixel file                     :'./60001110002_p/nu60001110002B_bp.fits'
---------------------------------------------------------------------
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/badpix/nuBbadpix20100101v005.fits' file for on-ground bad pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET0.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET1.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET2.
nuflagbad_0.1.8: Info: Processing '/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_dspx.fits.gz' file for on-board disabled pixel data of detector DET3.
nuflagbad_0.1.8: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuflagbad_0.1.8: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
nuflagbad_0.1.8: Info: Creating output bad pixel file.
---------------------------------------------------------------------
nuflagbad_0.1.8: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagbad' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuhotpix' 
nupipeline_0.4.12: Command: nuhotpix outhpfile=./60001110002_p/nu60001110002B_hp.fits infile=./60001110002_p/nu60001110002B_uf.evt binsize=600.0 cellsize=5 cleanflick=yes bthresh=6 outfile=./60001110002_p/nu60001110002B_uf.1978tmp logpos=-6.0 history=yes iterate=yes chatter=3 impfac=1.0 clobber=yes
---------------------------------------------------------------------
 		Running 'nuhotpix_0.1.7'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the output Hot Pixel file                     :'./60001110002_p/nu60001110002B_hp.fits'
Bin size (seconds) for count image generation         :'600.000000'
Search and flag flickering pixels?                      : yes
Iterate the search                                      : yes
---------------------------------------------------------------------
nuhotpix_0.1.7: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89745601.000000 - 89746201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy= 5 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746201.000000 - 89746801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=13 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89746801.000000 - 89747401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy=23 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=14 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89747401.000000 - 89748001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748001.000000 - 89748601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89748601.000000 - 89749201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=14 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749201.000000 - 89749801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89749801.000000 - 89750401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89750401.000000 - 89751001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=23 rawy=28 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751001.000000 - 89751601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89751601.000000 - 89752201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752201.000000 - 89752801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy= 7 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=26 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89752801.000000 - 89753401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=26 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89753401.000000 - 89754001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754001.000000 - 89754601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89754601.000000 - 89755201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy= 0 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755201.000000 - 89755801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found H
ot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89755801.000000 - 89756401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89756401.000000 - 89757001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757001.000000 - 89757601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89757601.000000 - 89758201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758201.000000 - 89758801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89758801.000000 - 89759401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89759401.000000 - 89760001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=11 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=14 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760001.000000 - 89760601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89760601.000000 - 89761201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761201.000000 - 89761801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=28 rawy=27 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89761801.000000 - 89762401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89762401.000000 - 89763001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=25 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=22 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763001.000000 - 89763601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0
.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89763601.000000 - 89764201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764201.000000 - 89764801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89764801.000000 - 89765401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89765401.000000 - 89766001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766001.000000 - 89766601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89766601.000000 - 89767201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767201.000000 - 89767801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89767801.000000 - 89768401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89768401.000000 - 89769001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy= 2 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769001.000000 - 89769601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89769601.000000 - 89770201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 8 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770201.000000 - 89770801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel i
n rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89770801.000000 - 89771401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89771401.000000 - 89772001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772001.000000 - 89772601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89772601.000000 - 89773201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773201.000000 - 89773801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89773801.000000 - 89774401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89774401.000000 - 89775001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy=18 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775001.000000 - 89775601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=13 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89775601.000000 - 89776201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=24 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776201.000000 - 89776801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89776801.000000 - 89777401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 2 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89777401.000000 - 89778001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778001.000000 - 89778601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx
=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89778601.000000 - 89779201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779201.000000 - 89779801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 1 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89779801.000000 - 89780401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=22 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89780401.000000 - 89781001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781001.000000 - 89781601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89781601.000000 - 89782201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=10 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782201.000000 - 89782801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=24 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89782801.000000 - 89783401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in ra
wx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 7 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89783401.000000 - 89784001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784001.000000 - 89784601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89784601.000000 - 89785201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=17 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785201.000000 - 89785801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89785801.000000 - 89786401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89786401.000000 - 89787001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787001.000000 - 89787601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy=25 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89787601.000000 - 89788201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788201.000000 - 89788801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy= 9 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89788801.000000 - 89789401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=28 rawy=12 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89789401.000000 - 89790001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790001.000000 - 89790601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=28 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89790601.000000 - 89791201.000000]
nuhotpix_0.1.7: Info: Found Hot Pix
el in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=12 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791201.000000 - 89791801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 0 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=22 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=29 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89791801.000000 - 89792401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=19 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89792401.000000 - 89793001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 2 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793001.000000 - 89793601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=25 det_id=0 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89793601.000000 - 89794201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794201.000000 - 89794801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=17 rawy=20 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 4 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89794801.000000 - 89795401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=27 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89795401.000000 - 89796001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796001.000000 - 89796601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89796601.000000 - 89797201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797201.000000 - 89797801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 3 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89797801.000000 - 89798401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.
1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89798401.000000 - 89799001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=24 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799001.000000 - 89799601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89799601.000000 - 89800201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800201.000000 - 89800801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=15 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89800801.000000 - 89801401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89801401.000000 - 89802001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 5 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802001.000000 - 89802601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 3 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89802601.000000 - 89803201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803201.000000 - 89803801.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89803801.000000 - 89804401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=29 rawy=19 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 1 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89804401.000000 - 89805001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805001.000000 - 89805601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89805601.000000 - 89806201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=26 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in r
awx=11 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806201.000000 - 89806801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 5 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=26 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89806801.000000 - 89807401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89807401.000000 - 89808001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=11 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808001.000000 - 89808601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 2 rawy= 2 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89808601.000000 - 89809201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809201.000000 - 89809801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy=19 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89809801.000000 - 89810401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=31 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy=11 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89810401.000000 - 89811001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811001.000000 - 89811601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89811601.000000 - 89812201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy= 8 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812201.000000 - 89812801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89812801.000000 - 89813401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixe
l in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89813401.000000 - 89814001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814001.000000 - 89814601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89814601.000000 - 89815201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815201.000000 - 89815801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=21 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89815801.000000 - 89816401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89816401.000000 - 89817001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817001.000000 - 89817601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy=30 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=25 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89817601.000000 - 89818201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818201.000000 - 89818801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89818801.000000 - 89819401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=24 det_id=1

nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89819401.000000 - 89820001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820001.000000 - 89820601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 3 rawy=19 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89820601.000000 - 89821201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821201.000000 - 89821801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=12 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89821801.000000 - 89822401.000000]
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89822401.000000 - 89823001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=20 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823001.000000 - 89823601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=23 rawy=29 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89823601.000000 - 89824201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=27 rawy=29 det_id=2 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824201.000000 - 89824801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=10 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89824801.000000 - 89825401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89825401.000000 - 89826001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=24 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826001.000000 - 89826601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy= 6 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89826601.000000 - 89827201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=12 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=29 rawy=31 det_id=3 
nuhotpix_0.1
.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827201.000000 - 89827801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89827801.000000 - 89828401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy=22 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89828401.000000 - 89829001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=30 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=13 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=21 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829001.000000 - 89829601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy= 1 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89829601.000000 - 89830201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=13 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=19 rawy=30 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830201.000000 - 89830801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=25 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 9 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=15 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89830801.000000 - 89831401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89831401.000000 - 89832001.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 3 rawy=10 det_id=0 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 4 rawy= 1 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832001.000000 - 89832601.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 4 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 5 rawy=14 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89832601.000000 - 89833201.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 7 rawy= 6 det_id=1 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833201.000000 - 89833801.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=27 rawy= 1 det_id=0 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=10 rawy=10 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=11 rawy=30 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=31 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 6 rawy= 5 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy= 8 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=15 rawy= 6 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=27 det_id=1 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=30 rawy= 1 det_id=2 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx=20 rawy=16 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89833801.000000 - 89834401.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 8 rawy=30 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx= 9 rawy=23 det_id=3 
nuhotpix_0.1.7: Info: Found
 Hot Pixel in rawx=17 rawy= 4 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=18 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=26 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Creating count maps for events with TIME included in [89834401.000000 - 89834701.000000]
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=16 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=1 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=16 rawy=22 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=22 rawy=13 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=20 det_id=2 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=20 rawy=12 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=17 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=18 det_id=3 
nuhotpix_0.1.7: Info: Found Hot Pixel in rawx=31 rawy=21 det_id=3 
nuhotpix_0.1.7: Info: Iter 1 Found Hot Pixel in rawx= 6 rawy=10 det_id=3 
nuhotpix_0.1.7: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
nuhotpix_0.1.7: Info: Creating output hot pixel file.
---------------------------------------------------------------------
nuhotpix_0.1.7: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuhotpix' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpha' 
nupipeline_0.4.12: Command: nucalcpha chatter=3 gradefile=CALDB cleancols=yes clobber=yes timerise=0.0016 phaparfile=CALDB history=yes evtthr=55 outfile=./60001110002_p/nu60001110002B_uf.1978tmp offsetfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt
---------------------------------------------------------------------
 		Running 'nucalcpha_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
Name of the input Offset file                         :'CALDB'
Name of the input Grade file                          :'CALDB'
Name of the input PHAPAR file                         :'CALDB'
Delete temporary columns                              : yes
---------------------------------------------------------------------
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/grade/nuCgrade20100101v002.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/cap_offset/nuBoffset20100101v001.fits' file.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET0.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET1.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET2.
nucalcpha_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBphapar20100101v001.fits' file for PHAPAR data of detector DET3.
nucalcpha_0.2.2: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
---------------------------------------------------
nucalcpha_0.2.2: Info: 		 NuSTAR GRADES
nucalcpha_0.2.2: Info: Total events                            808921
nucalcpha_0.2.2: Info: Total events with grade  0              149367   18.4650%
nucalcpha_0.2.2: Info: Total events with grade  1               19799    2.4476%
nucalcpha_0.2.2: Info: Total events with grade  2               13297    1.6438%
nucalcpha_0.2.2: Info: Total events with grade  3               16496    2.0393%
nucalcpha_0.2.2: Info: Total events with grade  4               15602    1.9287%
nucalcpha_0.2.2: Info: Total events with grade  5                 919    0.1136%
nucalcpha_0.2.2: Info: Total events with grade  6                 854    0.1056%
nucalcpha_0.2.2: Info: Total events with grade  7                1077    0.1331%
nucalcpha_0.2.2: Info: Total events with grade  8                1434    0.1773%
nucalcpha_0.2.2: Info: Total events with grade  9                1267    0.1566%
nucalcpha_0.2.2: Info: Total events with grade 10                1139    0.1408%
nucalcpha_0.2.2: Info: Total events with grade 11                1277    0.1579%
nucalcpha_0.2.2: Info: Total events with grade 12                1425    0.1762%
nucalcpha_0.2.2: Info: Total events with grade 13                 384    0.0475%
nucalcpha_0.2.2: Info: Total events with grade 14                 381    0.0471%
nucalcpha_0.2.2: Info: Total events with grade 15                 417    0.0516%
nucalcpha_0.2.2: Info: Total events with grade 16                 420    0.0519%
nucalcpha_0.2.2: Info: Total events with grade 17                 414    0.0512%
nucalcpha_0.2.2: Info: Total events with grade 18                 357    0.0441%
nucalcpha_0.2.2: Info: Total events with grade 19                 393    0.0486%
nucalcpha_0.2.2: Info: Total events with grade 20                 517    0.0639%
nucalcpha_0.2.2: Info: Total events with grade 21                1490    0.1842%
nucalcpha_0.2.2: Info: Total events with grade 22                1482    0.1832%
nucalcpha_0.2.2: Info: Total events with grade 23                1440    0.1780%
nucalcpha_0.2.2: Info: Total events with grade 24                1436    0.1775%
nucalcpha_0.2.2: Info: Total events with grade 25                1271    0.1571%
nucalcpha_0.2.2: Info: Total events with grade 26                 460
0.0569%
nucalcpha_0.2.2: Info: Total events with grade 27                 124    0.0153%
nucalcpha_0.2.2: Info: Total events with grade 28                 106    0.0131%
nucalcpha_0.2.2: Info: Total events with grade 29                  73    0.0090%
nucalcpha_0.2.2: Info: Total events with grade 30                  95    0.0117%
nucalcpha_0.2.2: Info: Total events with grade 31                 156    0.0193%
nucalcpha_0.2.2: Info: Total events with grade 32              573552   70.9033%
nucalcpha_0.2.2: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpha_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpha' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucalcpi' 
nupipeline_0.4.12: Command: nucalcpi outfile=./60001110002_p/nu60001110002B_uf.1978tmp hkfile=/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz clobber=yes chatter=3 clcfilterfile=CALDB gainfile=CALDB history=yes temperature=5 clcfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt
---------------------------------------------------------------------
 		Running 'nucalcpi_0.2.2'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the input HK Header file                      :'/home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz'
Name of the input GAIN file                           :'CALDB'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
---------------------------------------------------------------------
nucalcpi_0.2.2: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nucalcpi_0.2.2: Info: Processing /home/jovyan/project/_data/NuSTAR/60001110002/hk/nu60001110002B_fpm.hk.gz file.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/gain/nuBgain20100101v009.fits' file for gain data of detector DET3.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET0.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET1.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET2.
nucalcpi_0.2.2: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuBclc20100101v004.fits' file for charge loss correction data of detector DET3.
nucalcpi_0.2.2: Info: Processing https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/clc/nuCclcfilter20100101v001.fits file.
nucalcpi_0.2.2: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nucalcpi_0.2.2: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucalcpi' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nuflagevt' 
nupipeline_0.4.12: Command: nuflagevt evtcutfile=CALDB chatter=3 depthcutfile=CALDB infile=./60001110002_p/nu60001110002B_uf.evt outfile=./60001110002_p/nu60001110002B_uf.1978tmp history=yes clobber=yes
---------------------------------------------------------------------
 		Running 'nuflagevt_0.1.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'./60001110002_p/nu60001110002B_uf.evt'
Name of the output Event file                         :'./60001110002_p/nu60001110002B_uf.1978tmp'
---------------------------------------------------------------------
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET0_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET1_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET2_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET3_SINGLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET0_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET1_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET2_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBdepthcut20100101v004.fits' file for depth cut data of detector DET3_DOUBLE.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET0.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET1.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET2.
nuflagevt_0.1.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/instrument/nuBevtcut20100101v001.fits' file for event cut data of detector DET3.
nuflagevt_0.1.4: Info: Processing './60001110002_p/nu60001110002B_uf.evt' file.
nuflagevt_0.1.4: Info: './60001110002_p/nu60001110002B_uf.1978tmp' file successfully written.
---------------------------------------------------------------------
nuflagevt_0.1.4: Exit with success.
---------------------------------------------------------------------
nupipeline_0.4.12: Info: 'nuflagevt' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated
nupipeline_0.4.12: Info: Running 'nucoord' 
nupipeline_0.4.12: Command: nucoord det1xref=350 infile=./60001110002_p/nu60001110002B_uf.evt aberration=no optaxisfile=./60001110002_p/nu60001110002B_oa.fits attfile=./60001110002_p/nu60001110002_att.fits det1reffile=./60001110002_p/nu60001110002B_det1.fits mastaspectfile=./60001110002_p/nu60001110002_mast.fits initseed=no attinterpol=LINEAR alignfile=nuCalign20120101v001.fits outfile=./60001110002_p/nu60001110002B_uf.1978tmp det1yref=350 seedcoordinator=-1956 pntdec=5.6889300000000E+01 history=yes follow_sun=yes timemargin=32.0 chatter=3 pixposfile=CALDB clobber=yes pntra=3.2188650000000E+02 teldef=nuB20100101v002.teldef randomizecoordinator=yes
--------------------------------------------------------------
             Running ' nucoord version 0.1.8 '
--------------------------------------------------------------
nucoord_0.1.8: Info: Name of the Input Event File  './60001110002_p/nu60001110002B_uf.evt'
nucoord_0.1.8: Info: Name of the Output Event File './60001110002_p/nu60001110002B_uf.1978tmp'
--------------------------------------------------------------
nucoord_0.1.8: Info: Copying input file to '4343_tmp_nucoord/nu60001110002B_uf.1978tmp'
nucoord_0.1.8: Info: Computing DET1 and DET2 coordinates
nucoord_0.1.8: Info: Running 'nucalcpos' 
nucoord_0.1.8: Command: nucalcpos saveraw2coord=no outfile=4343_tmp_nucoord/nu60001110002B_uf.4343tmp history=yes chatter=3 initseed=no alignfile=nuCalign20120101v001.fits clobber=yes mastaspectfile=./60001110002_p/nu60001110002_mast.fits pixposfile=CALDB infile=4343_tmp_nucoord/nu60001110002B_uf.1978tmp
---------------------------------------------------------------------
 		Running 'nucalcpos_0.2.4'
---------------------------------------------------------------------
		 Input Parameters List: 
Name of the input Event file                          :'4343_tmp_nucoord/nu60001110002B_uf.1978tmp'
Name of the output Event file                         :'4343_tmp_nucoord/nu60001110002B_uf.4343tmp'
Name of the input pixel location file                 :'CALDB'
Name of the input Alignment File                           :'nuCalign20120101v001.fits'
Name of the input Mast Aspect Solution File               :'./60001110002_p/nu60001110002_mast.fits'
---------------------------------------------------------------------
nucalcpos_0.2.4: Info: Processing nuCalign20120101v001.fits file.
nucalcpos_0.2.4: Info: Processing '4343_tmp_nucoord/nu60001110002B_uf.1978tmp' file.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET0.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET1.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET2.
nucalcpos_0.2.4: Info: Processing 'https://heasarc.gsfc.nasa.gov/FTP/caldb/data/nustar/fpm/bcf/pixpos/nuBpixpos20100101v007.fits' file for pixpos data of detector DET3.
nucalcpos_0.2.4: Warning: No mast aspect data for TIME=89745601.005071
nucalcpos_0.2.4: Info: '4343_tmp_nucoord/nu60001110002B_uf.4343tmp' file successfully written.
---------------------------------------------------------------------
nucalcpos_0.2.4: Exit with success.
---------------------------------------------------------------------
nucoord_0.1.8: Info: 'nucalcpos' exit with success. DET1 and DET2 coordinates computed.
nucoord_0.1.8: Info: Computing X and Y coordinates
nucoord_0.1.8: Info: Running 'coordinator' 
nucoord_0.1.8: Command: coordinator eventext=EVENTS seed=-1956 skyxnull=-1 randomize=yes teldef=4343_tmp_nucoord/nuB20100101v002.teldef aberration=no interpolation=LINEAR eventfile=4343_tmp_nucoord/nu60001110002B_uf.1978tmp skyynull=-1 timecol=TIME ra=3.2188650000000E+02 timemargin=32.0 attfile=4343_tmp_nucoord/nu60001110002_att.fits history=yes chatter=3 dec=5.6889300000000E+01 follow_sun=yes
using LINEAR interpolation for aspecting
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
0% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
1% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
2% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
3% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
4% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
5% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
6% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
7% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
8% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
9% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
10% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
11% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
12% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
13% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
14% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
15% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
16% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
17% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
18% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
19% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
20% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
21% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
22% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
23% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
24% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
25% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
26% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
27% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
28% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
29% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
30% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
31% done
32% done
32% done
32% done
32% d
one
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
32% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
33% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
34% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
35% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
36% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
37% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
38% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
39% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
40% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
41% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
42% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
43% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
44% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
45% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
46% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
47% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
48% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
49% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
50% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
51% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
52% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
53% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
54% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
55% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
56% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
57% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
58% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
59% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
60% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
61% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
62% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% done
63% do
ne
63% done
63% done
63% done
63% done
63% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
64% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
65% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
66% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
67% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
68% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
69% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
70% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
71% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
72% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
73% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
74% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
75% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
76% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
77% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
78% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
79% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
80% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
81% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
82% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
83% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
84% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
85% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
86% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
87% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
88% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
89% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
90% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
91% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
92% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
93% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% done
94% don
e
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
95% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
96% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
97% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
98% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
99% done
100% done
nucoord_0.1.8: Info: 'coordinator' exit with success. X and Y coordinates computed.
nucoord_0.1.8: Info: Moving temporary file '4343_tmp_nucoord/nu60001110002B_uf.1978tmp' to output file './60001110002_p/nu60001110002B_uf.1978tmp'
nucoord_0.1.8: Info: Output Event File './60001110002_p/nu60001110002B_uf.1978tmp' successfully written.
nucoord_0.1.8: Info: Creating Optical Axis File
nucoord_0.1.8: Info: Running 'nuskypos' 
nucoord_0.1.8: Command: nuskypos pntdec=5.6889300000000E+01 initseed=no clobber=yes attfile=./60001110002_p/nu60001110002_att.fits det1yref=350 det1reffile=./60001110002_p/nu60001110002B_det1.fits history=yes chatter=3 instrument=FPMB det1xref=350 optaxisfile=./60001110002_p/nu60001110002B_oa.fits alignfile=nuCalign20120101v001.fits pntra=3.2188650000000E+02 mastaspectfile=./60001110002_p/nu60001110002_mast.fits aberration=no teldef=nuB20100101v002.teldef
---------------------------------------------------------------------
 		Running 'nuskypos_0.1.3'
---------------------------------------------------------------------
nuskypos_0.1.3: Info: Processing nuCalign20120101v001.fits file.
nuskypos_0.1.3: Info: Processing ./60001110002_p/nu60001110002_att.fits file.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002B_oa.fits' file successfully written.
nuskypos_0.1.3: Info: './60001110002_p/nu60001110002B_det1.fits' file successfully written.
nucoord_0.1.8: Info: 'nuskypos' exit with success. './60001110002_p/nu60001110002B_oa.fits' Optical Axis File created.
----------------------------------------------------------
nucoord_0.1.8: Exit with success 
------------------------------------------------------------
nupipeline_0.4.12: Info: 'nucoord' exit with success. './60001110002_p/nu60001110002B_uf.evt' updated

============================================================
nupipeline_0.4.12: Stage  I: './60001110002_p/nu60001110002B_uf.evt' calibrated.
============================================================


============================================================
                  NuSTAR pipeline Report
 Task: nupipeline Version: 0.4.12 Release Date: 2023-11-16
============================================================
evt: .... Optical Axis   RA from  RA_PNT keyword : 3.2188650000000E+02(deg)
evt: .... Optical Axis  DEC from DEC_PNT keyword : 5.6889300000000E+01(deg)
FPMA: .... Stage    I: Calibrating Level 1 Event File: './60001110002_p/nu60001110002A_uf.evt'
FPMA: .... Stage    I: Calibrated Event File: './60001110002_p/nu60001110002A_uf.evt'
FPMB: .... Stage    I: Calibrating Level 1 Event File: './60001110002_p/nu60001110002B_uf.evt'
FPMB: .... Stage    I: Calibrated Event File: './60001110002_p/nu60001110002B_uf.evt'

=============================================================================================
nupipeline_0.4.12: Exit with no errors - Tue Feb  3 11:21:29 EST 2026

=============================================================================================
=============================================================================================

    If the NuSTARDAS software was helpful for your research work, the following
    acknowledgement would be appreciated: "This research has made use of the
    NuSTAR Data Analysis Software (NuSTARDAS) jointly developed by the ASI Space Science
    Data Center (SSDC, Italy) and the California Institute of Technology (Caltech, USA)."

=============================================================================================
=============================================================================================

Example 5: Running tasks in parallel#

Running HEASoftPy tasks in parallel is straightforward using Python libraries such as multiprocessing. The only subtlety is in the use of parameter files. Many HEASoft tasks use parameter file to handle the input parameters.

By defaults, parameters are stored in a pfiles folder the user’s home directory. When tasks are run in parallel, care is needed to ensure parallel tasks don’t use the same parameter files (and hence be called with the same parameters).

HEASoftPy provides and a content utility that allows tasks to run using temporary parameter files, so parallel runs remain independent.

The following is an example, we show how to run a nicerl2 to process NICER event files from many observations in parallel (the data themselves are downloaded in the ‘configuration’ cell near the top of the notebook).

We do this by creating a helper function worker that wraps the task call and add the temporary parameter files (see the ‘Global Setup: Functions’ section near the top of this notebook).

The NUM_CORES constant (defined in the ‘Global Setup: Configuration’ subsection near the top of this notebook) controls the number of processes to run in parallel.

Danger

Running the nicerl2 tool requires that up-to-date geomagnetic data are available on your system; see this for a discussion. The path to the geomagnetic data can either be set in the GEOMAG_PATH environment variable, or passed to the tool directly through the geomag_path parameter.

We download the geomagnetic data using a HEASoft tool; nigeodown. Once again we use the Python interface provided by HEASoftPy.

In this case, we have wrapped the nicerl2 HEASoftPy call in another function, to make parallelization easier. Rather than adding another argument to the worker function (defined near the top of this notebook), and passing the geomagnetic data path, or setting an environment variable, we define a constant global variable that we read in the worker function,

GEOMAG_PATH = os.path.join(ROOT_DATA_DIR, "geomag")
out = hsp.nigeodown(outdir=GEOMAG_PATH, allow_failure=False, clobber=True)
os.listdir(GEOMAG_PATH)
['.tmpdir',
 'dst_kyoto.fits',
 'f107_petincton.fits',
 'kp_noaa.fits',
 'kp_potsdam.fits',
 'solarphi_oulu.fits']

This geomagnetic data is going to help us process the following NICER observations:

NI_OBS_IDS
['1010010121', '1010010122', '1012020112', '1012020114']

Now, we can run the parallelized nicerl2 tasks:

with mp.Pool(NUM_CORES) as p:
    obsids = [os.path.join(ni_data_dir, oi) for oi in NI_OBS_IDS]
    result = p.map(worker, obsids)

# Show the output of the parallel tasks
result
[---------------------
 :: Execution Result ::
 ---------------------
 > Return Code: 0
 > Output:
 nicerl2 1.41
 --------------------------------------------------------
          Requested task operations: MKF,SCREEN,CALMERGE
        Processed prefilter_columns: NICERV6
    Processed niprefilter2_coltypes: NICERV6,BASE
           Processed geomag_columns: kp_potsdam.fits(KP),COR_NYM,solarphi_oulu.fits(SOLAR_PHI)
   Inputs:
   (INDIR) /home/jovyan/project/_data/NICER/1010010121
   (UF)    /home/jovyan/project/_data/NICER/1010010121/xti/event_uf
   (CL)    /home/jovyan/project/_data/NICER/1010010121/xti/event_cl
   (MKF)   /home/jovyan/project/_data/NICER/1010010121/auxil/ni1010010121.mkf
 
                         MPU List: 0-6
                           OBS_ID: 1010010121
                           OBJECT: 1E_0102.2-7219
                         Position: RA    16.0080  Dec   -72.0310 [deg] OBJECT
                                   RA    16.0080  Dec   -72.0300 [deg] NOMINAL
                                   RA        OBJ  Dec        OBJ [deg] REQUESTED
 
   CALDBVER = 
   SOFTVER  = Hea_26Sep2025_V6.36_NICER_2025-09-05_V015
 
 ========== Running nicercal ==========
 nicercal 1.12
   MPU List: 0-6
   MPU0 ni1010010121_0mpu0_ufa.evt
   MPU1 ni1010010121_0mpu1_ufa.evt
   MPU2 ni1010010121_0mpu2_ufa.evt
   MPU3 ni1010010121_0mpu3_ufa.evt
   MPU4 ni1010010121_0mpu4_ufa.evt
   MPU5 ni1010010121_0mpu5_ufa.evt
   MPU6 ni1010010121_0mpu6_ufa.evt
 nimpumerge 1.7
   Master sort -> /home/jovyan/project/_data/NICER/1010010121/xti/event_cl/ni1010010121_0mpu7_ufa.evt
   Append MPU GTIs
 nifpmsel 1.11
   FPM List: launch
   Recalculating GTIs
 ========== Running niprefilter/niprefilter2 ==========
 niprefilter 2.12
   Running prefilter
 ========== Running niprefilter2 ==========
 niprefilter2 3.0
   Searching geomagnetic quantities
       (geomagnetic data from /home/jovyan/project/_data/geomag)
   Creating output file
   MPU HK files (interp):  0  1  2  3  4  5  6 
   MPU HK files (MPU-uf):  0  1  2  3  4  5  6 
   Event files
   Filter-level calculations
   Filter-level interpolations
     File: kp_potsdam.fits    Column: KP
     File: solarphi_oulu.fits    Column: SOLAR_PHI
   Adding COR_NYM 
   Adding DELTA_SLOW_LLD 
   Adding XTI_PNT_JITTER 
   Adding ANG_DIST_{X,Y} (target offset) 
   Appending original extension
   Filter file: /home/jovyan/project/_data/NICER/1010010121/auxil/ni1010010121.mkf
 ========== Running nimaketime ==========
 nimaketime 1.13
         Tracking?: REQUIRED
         On Target: < 54 [arcsec]
         Elevation: < 15 [deg]
      Bright Earth: < 30 [deg]
    Number of FPMs: > 7
 Star tracker good: REQUIRED
   TOT_LOWMEM_FIFO: SKIP
    DELTA_SLOW_LLD: -3.0-3.0
         NICER_SAA: SCREEN OUT
               SAA: SKIP
           COR_SAX: *-*
   UNDERONLY Range: 0-500
    OVERONLY Range: *-30
    Running maketime
 
                  Summary of Temporal Filtering
        Successive Filtering Stage     GoodTime #GTI
    ------------------------------   ---------- ----
             On-Target + Observing      1282.00    7  
        LOWMEM + Threshold Quality      1282.00    7  
                 SAA + COR + Orbit      1060.00    6  
                       Undershoots      1060.00    6  
                        Overshoots      1060.00    6  
                      Filtered GTI      1060.00    6  
 ========== Running nicermergeclean ==========
 nicermergeclean 1.15
 niautoscreen 1.6
    FPM exposure check
    FPM round-robbin check
    Under(only)shoot check
    Over(only)shoot check
    Noise rate check
    Extended noise peak (0.3-0.7 keV)
    MPU LOWMEM FIFO data losses
    MPU LOWMEM FIFO data loss fraction check
    Per-MPU shredded GTI check
        ---------------------------- Pointing GTIs ---------------------------
        ---------- MET ------------  ------------------UTC--------------------
    GTI        START -         STOP                START -                STOP
      1 120703778.00 - 120703932.00  2017-10-29T00:49:36 - 2017-10-29T00:52:10
      2 120709101.00 - 120709492.00  2017-10-29T02:18:19 - 2017-10-29T02:24:50
      3 120718797.00 - 120719245.00  2017-10-29T04:59:55 - 2017-10-29T05:07:23
      4 120735735.00 - 120735952.00  2017-10-29T09:42:13 - 2017-10-29T09:45:50
 
     Filter MPU_ROUND_ROBBIN - MPU overload resulting in rolling disablements
       All data survived this screening criterium
 
     Filter MPU_UNDERONLY_COUNT - Per-FPM undershoot resets (optical loading)
       All data survived this screening criterium
 
     Filter MPU_OVERONLY_COUNT - Per-FPM overshoot resets (background)
       All data survived this screening criterium
 
     Filter MPU_NOISE25_COUNT - Per-FPM noise peak rates
       All data survived this screening criterium
 
     Filter MPU_XRAY_PI_0030_0070 - Per-FPM 0.3-0.7 keV extended noise peak
       All data survived this screening criterium
 
     Filter MPU_LOWMEM_FIFO_FRAC - Per-MPU Low memory FIFO data loss fraction
       All data survived this screening criterium
 
     Filter GTI_COUNT - Per-MPU shredded GTI check
       All data survived this screening criterium
 
     Filter KNOWN_FPM - A priori known bad FPM times
       All data survived this screening criterium
 
     Filter KNOWN_MPU - A priori known bad MPU times
       All data survived this screening criterium
 
 
                        Screened FPM / MPU quicklook table
                               DET_ID Number                       |  MPU Num.
         F0       1       2       3       4       5       6        |          
    GTI  F01234567012345670123456701234567012345670123456701234567 |  M0123456
      1  F.........O......O.O.............................O....... |  M.......
      2  F.........O......O.O.............................O....... |  M.......
      3  F.........O......O.O.............................O....... |  M.......
      4  F.........O......O.O.............................O....... |  M.......
             Footnotes  O=known non-functional; X=screened; '.'=good
 
    Screening found no issues
 nicerclean 1.13
            PI Range: 20 - 1500
      Trumpet Filter: 1.100000+120.000000/PI+0.000000e+00*PI**4
          Time Range: 100-*
               Flags: Under(-) Under(-) Forced(-) NRing(-) Datamode(so+s+f)
          Expression: (((MPU_UNDER_COUNT<80)||(EVENT_FLAGS==bx0x1x000)))
   Screening...
   Updating keywords in output file...
 nifpmsel 1.11
   FPM List: launch,@/home/jovyan/project/_data/NICER/1010010121/xti/event_cl/ni1010010121_0mpu7_ufa.evt_detlist.txt
   Recalculating GTIs
 Event files written
  UFA: /home/jovyan/project/_data/NICER/1010010121/xti/event_cl/ni1010010121_0mpu7_ufa.evt
   CL: /home/jovyan/project/_data/NICER/1010010121/xti/event_cl/ni1010010121_0mpu7_cl.evt
 
 > Parameters:
 	indir     : /home/jovyan/project/_data/NICER/1010010121
 	geomag_path: /home/jovyan/project/_data/geomag
 	clobber   : yes,
 ---------------------
 :: Execution Result ::
 ---------------------
 > Return Code: 0
 > Output:
 nicerl2 1.41
 --------------------------------------------------------
          Requested task operations: MKF,SCREEN,CALMERGE
        Processed prefilter_columns: NICERV6
    Processed niprefilter2_coltypes: NICERV6,BASE
           Processed geomag_columns: kp_potsdam.fits(KP),COR_NYM,solarphi_oulu.fits(SOLAR_PHI)
   Inputs:
   (INDIR) /home/jovyan/project/_data/NICER/1010010122
   (UF)    /home/jovyan/project/_data/NICER/1010010122/xti/event_uf
   (CL)    /home/jovyan/project/_data/NICER/1010010122/xti/event_cl
   (MKF)   /home/jovyan/project/_data/NICER/1010010122/auxil/ni1010010122.mkf
 
                         MPU List: 0-6
                           OBS_ID: 1010010122
                           OBJECT: 1E_0102.2-7219
                         Position: RA    16.0080  Dec   -72.0310 [deg] OBJECT
                                   RA    16.0098  Dec   -72.0293 [deg] NOMINAL
                                   RA        OBJ  Dec        OBJ [deg] REQUESTED
 
   CALDBVER = 
   SOFTVER  = Hea_26Sep2025_V6.36_NICER_2025-09-05_V015
 
 ========== Running nicercal ==========
 nicercal 1.12
   MPU List: 0-6
   MPU0 ni1010010122_0mpu0_ufa.evt
   MPU1 ni1010010122_0mpu1_ufa.evt
   MPU2 ni1010010122_0mpu2_ufa.evt
   MPU3 ni1010010122_0mpu3_ufa.evt
   MPU4 ni1010010122_0mpu4_ufa.evt
   MPU5 ni1010010122_0mpu5_ufa.evt
   MPU6 ni1010010122_0mpu6_ufa.evt
 nimpumerge 1.7
   Master sort -> /home/jovyan/project/_data/NICER/1010010122/xti/event_cl/ni1010010122_0mpu7_ufa.evt
   Append MPU GTIs
 nifpmsel 1.11
   FPM List: launch
   Recalculating GTIs
 ========== Running niprefilter/niprefilter2 ==========
 niprefilter 2.12
   Running prefilter
 ========== Running niprefilter2 ==========
 niprefilter2 3.0
   Searching geomagnetic quantities
       (geomagnetic data from /home/jovyan/project/_data/geomag)
   Creating output file
   MPU HK files (interp):  0  1  2  3  4  5  6 
   MPU HK files (MPU-uf):  0  1  2  3  4  5  6 
   Event files
   Filter-level calculations
   Filter-level interpolations
     File: kp_potsdam.fits    Column: KP
     File: solarphi_oulu.fits    Column: SOLAR_PHI
   Adding COR_NYM 
   Adding DELTA_SLOW_LLD 
   Adding XTI_PNT_JITTER 
   Adding ANG_DIST_{X,Y} (target offset) 
   Appending original extension
   Filter file: /home/jovyan/project/_data/NICER/1010010122/auxil/ni1010010122.mkf
 ========== Running nimaketime ==========
 nimaketime 1.13
         Tracking?: REQUIRED
         On Target: < 54 [arcsec]
         Elevation: < 15 [deg]
      Bright Earth: < 30 [deg]
    Number of FPMs: > 7
 Star tracker good: REQUIRED
   TOT_LOWMEM_FIFO: SKIP
    DELTA_SLOW_LLD: -3.0-3.0
         NICER_SAA: SCREEN OUT
               SAA: SKIP
           COR_SAX: *-*
   UNDERONLY Range: 0-500
    OVERONLY Range: *-30
    Running maketime
 
                  Summary of Temporal Filtering
        Successive Filtering Stage     GoodTime #GTI
    ------------------------------   ---------- ----
             On-Target + Observing       379.00   11  
        LOWMEM + Threshold Quality       379.00   11  
                 SAA + COR + Orbit       379.00   11  
                       Undershoots       379.00   11  
                        Overshoots       379.00   11  
                      Filtered GTI       364.00    6  
 ========== Running nicermergeclean ==========
 nicermergeclean 1.15
 niautoscreen 1.6
    FPM exposure check
    FPM round-robbin check
    Under(only)shoot check
    Over(only)shoot check
    Noise rate check
    Extended noise peak (0.3-0.7 keV)
    MPU LOWMEM FIFO data losses
    MPU LOWMEM FIFO data loss fraction check
    Per-MPU shredded GTI check
        ---------------------------- Pointing GTIs ---------------------------
        ---------- MET ------------  ------------------UTC--------------------
    GTI        START -         STOP                START -                STOP
      1 120807956.00 - 120808160.00  2017-10-30T05:45:54 - 2017-10-30T05:49:18
      2 120837255.00 - 120837412.00  2017-10-30T13:54:13 - 2017-10-30T13:56:50
 
     Filter MPU_ROUND_ROBBIN - MPU overload resulting in rolling disablements
       All data survived this screening criterium
 
     Filter MPU_UNDERONLY_COUNT - Per-FPM undershoot resets (optical loading)
       All data survived this screening criterium
 
     Filter MPU_OVERONLY_COUNT - Per-FPM overshoot resets (background)
       All data survived this screening criterium
 
     Filter MPU_NOISE25_COUNT - Per-FPM noise peak rates
       All data survived this screening criterium
 
     Filter MPU_XRAY_PI_0030_0070 - Per-FPM 0.3-0.7 keV extended noise peak
       All data survived this screening criterium
 
     Filter MPU_LOWMEM_FIFO_FRAC - Per-MPU Low memory FIFO data loss fraction
       All data survived this screening criterium
 
     Filter GTI_COUNT - Per-MPU shredded GTI check
       All data survived this screening criterium
 
     Filter KNOWN_FPM - A priori known bad FPM times
       All data survived this screening criterium
 
     Filter KNOWN_MPU - A priori known bad MPU times
       All data survived this screening criterium
 
 
                        Screened FPM / MPU quicklook table
                               DET_ID Number                       |  MPU Num.
         F0       1       2       3       4       5       6        |          
    GTI  F01234567012345670123456701234567012345670123456701234567 |  M0123456
      1  F.........O......O.O.............................O....... |  M.......
      2  F.........O......O.O.............................O....... |  M.......
             Footnotes  O=known non-functional; X=screened; '.'=good
 
    Screening found no issues
 nicerclean 1.13
            PI Range: 20 - 1500
      Trumpet Filter: 1.100000+120.000000/PI+0.000000e+00*PI**4
          Time Range: 100-*
               Flags: Under(-) Under(-) Forced(-) NRing(-) Datamode(so+s+f)
          Expression: (((MPU_UNDER_COUNT<80)||(EVENT_FLAGS==bx0x1x000)))
   Screening...
   Updating keywords in output file...
 nifpmsel 1.11
   FPM List: launch,@/home/jovyan/project/_data/NICER/1010010122/xti/event_cl/ni1010010122_0mpu7_ufa.evt_detlist.txt
   Recalculating GTIs
 Event files written
  UFA: /home/jovyan/project/_data/NICER/1010010122/xti/event_cl/ni1010010122_0mpu7_ufa.evt
   CL: /home/jovyan/project/_data/NICER/1010010122/xti/event_cl/ni1010010122_0mpu7_cl.evt
 
 > Parameters:
 	indir     : /home/jovyan/project/_data/NICER/1010010122
 	geomag_path: /home/jovyan/project/_data/geomag
 	clobber   : yes,
 ---------------------
 :: Execution Result ::
 ---------------------
 > Return Code: 0
 > Output:
 nicerl2 1.41
 --------------------------------------------------------
          Requested task operations: CALMERGE,MKF,SCREEN
        Processed prefilter_columns: NICERV6
    Processed niprefilter2_coltypes: NICERV6,BASE
           Processed geomag_columns: kp_potsdam.fits(KP),COR_NYM,solarphi_oulu.fits(SOLAR_PHI)
   Inputs:
   (INDIR) /home/jovyan/project/_data/NICER/1012020112
   (UF)    /home/jovyan/project/_data/NICER/1012020112/xti/event_uf
   (CL)    /home/jovyan/project/_data/NICER/1012020112/xti/event_cl
   (MKF)   /home/jovyan/project/_data/NICER/1012020112/auxil/ni1012020112.mkf
 
                         MPU List: 0-6
                           OBS_ID: 1012020112
                           OBJECT: BKGD_RXTE_2
                         Position: RA    60.0000  Dec     2.0000 [deg] OBJECT
                                   RA    60.0002  Dec     1.9997 [deg] NOMINAL
                                   RA        OBJ  Dec        OBJ [deg] REQUESTED
 
   CALDBVER = 
   SOFTVER  = Hea_26Sep2025_V6.36_NICER_2025-09-05_V015
 
 ========== Running nicercal ==========
 nicercal 1.12
   MPU List: 0-6
   MPU0 ni1012020112_0mpu0_ufa.evt
   MPU1 ni1012020112_0mpu1_ufa.evt
   MPU2 ni1012020112_0mpu2_ufa.evt
   MPU3 ni1012020112_0mpu3_ufa.evt
   MPU4 ni1012020112_0mpu4_ufa.evt
   MPU5 ni1012020112_0mpu5_ufa.evt
   MPU6 ni1012020112_0mpu6_ufa.evt
 nimpumerge 1.7
   Master sort -> /home/jovyan/project/_data/NICER/1012020112/xti/event_cl/ni1012020112_0mpu7_ufa.evt
   Append MPU GTIs
 nifpmsel 1.11
   FPM List: launch
   Recalculating GTIs
 ========== Running niprefilter/niprefilter2 ==========
 niprefilter 2.12
   Running prefilter
 ========== Running niprefilter2 ==========
 niprefilter2 3.0
   Searching geomagnetic quantities
       (geomagnetic data from /home/jovyan/project/_data/geomag)
   Creating output file
   MPU HK files (interp):  0  1  2  3  4  5  6 
   MPU HK files (MPU-uf):  0  1  2  3  4  5  6 
   Event files
   Filter-level calculations
   Filter-level interpolations
     File: kp_potsdam.fits    Column: KP
     File: solarphi_oulu.fits    Column: SOLAR_PHI
   Adding COR_NYM 
   Adding DELTA_SLOW_LLD 
   Adding XTI_PNT_JITTER 
   Adding ANG_DIST_{X,Y} (target offset) 
   Appending original extension
   Filter file: /home/jovyan/project/_data/NICER/1012020112/auxil/ni1012020112.mkf
 ========== Running nimaketime ==========
 nimaketime 1.13
         Tracking?: REQUIRED
         On Target: < 54 [arcsec]
         Elevation: < 15 [deg]
      Bright Earth: < 30 [deg]
    Number of FPMs: > 7
 Star tracker good: REQUIRED
   TOT_LOWMEM_FIFO: SKIP
    DELTA_SLOW_LLD: -3.0-3.0
         NICER_SAA: SCREEN OUT
               SAA: SKIP
           COR_SAX: *-*
   UNDERONLY Range: 0-500
    OVERONLY Range: *-30
    Running maketime
 
                  Summary of Temporal Filtering
        Successive Filtering Stage     GoodTime #GTI
    ------------------------------   ---------- ----
             On-Target + Observing      1334.00    2  
        LOWMEM + Threshold Quality      1334.00    2  
                 SAA + COR + Orbit      1334.00    2  
                       Undershoots      1334.00    2  
                        Overshoots      1334.00    2  
                      Filtered GTI      1334.00    2  
 ========== Running nicermergeclean ==========
 nicermergeclean 1.15
 niautoscreen 1.6
    FPM exposure check
    FPM round-robbin check
    Under(only)shoot check
    Over(only)shoot check
    Noise rate check
    Extended noise peak (0.3-0.7 keV)
    MPU LOWMEM FIFO data losses
    MPU LOWMEM FIFO data loss fraction check
    Per-MPU shredded GTI check
        ---------------------------- Pointing GTIs ---------------------------
        ---------- MET ------------  ------------------UTC--------------------
    GTI        START -         STOP                START -                STOP
      1 120603519.00 - 120604835.00  2017-10-27T20:58:37 - 2017-10-27T21:20:33
 
     Filter MPU_ROUND_ROBBIN - MPU overload resulting in rolling disablements
       All data survived this screening criterium
 
     Filter MPU_UNDERONLY_COUNT - Per-FPM undershoot resets (optical loading)
       All data survived this screening criterium
 
     Filter MPU_OVERONLY_COUNT - Per-FPM overshoot resets (background)
       All data survived this screening criterium
 
     Filter MPU_NOISE25_COUNT - Per-FPM noise peak rates
       All data survived this screening criterium
 
     Filter MPU_XRAY_PI_0030_0070 - Per-FPM 0.3-0.7 keV extended noise peak
       All data survived this screening criterium
 
     Filter MPU_LOWMEM_FIFO_FRAC - Per-MPU Low memory FIFO data loss fraction
       All data survived this screening criterium
 
     Filter GTI_COUNT - Per-MPU shredded GTI check
       All data survived this screening criterium
 
     Filter KNOWN_FPM - A priori known bad FPM times
       All data survived this screening criterium
 
     Filter KNOWN_MPU - A priori known bad MPU times
       All data survived this screening criterium
 
 
                        Screened FPM / MPU quicklook table
                               DET_ID Number                       |  MPU Num.
         F0       1       2       3       4       5       6        |          
    GTI  F01234567012345670123456701234567012345670123456701234567 |  M0123456
      1  F.........O......O.O.............................O....... |  M.......
             Footnotes  O=known non-functional; X=screened; '.'=good
 
    Screening found no issues
 nicerclean 1.13
            PI Range: 20 - 1500
      Trumpet Filter: 1.100000+120.000000/PI+0.000000e+00*PI**4
          Time Range: 100-*
               Flags: Under(-) Under(-) Forced(-) NRing(-) Datamode(so+s+f)
          Expression: (((MPU_UNDER_COUNT<80)||(EVENT_FLAGS==bx0x1x000)))
   Screening...
   Updating keywords in output file...
 nifpmsel 1.11
   FPM List: launch,@/home/jovyan/project/_data/NICER/1012020112/xti/event_cl/ni1012020112_0mpu7_ufa.evt_detlist.txt
   Recalculating GTIs
 Event files written
  UFA: /home/jovyan/project/_data/NICER/1012020112/xti/event_cl/ni1012020112_0mpu7_ufa.evt
   CL: /home/jovyan/project/_data/NICER/1012020112/xti/event_cl/ni1012020112_0mpu7_cl.evt
 
 > Parameters:
 	indir     : /home/jovyan/project/_data/NICER/1012020112
 	geomag_path: /home/jovyan/project/_data/geomag
 	clobber   : yes,
 ---------------------
 :: Execution Result ::
 ---------------------
 > Return Code: 0
 > Output:
 nicerl2 1.41
 --------------------------------------------------------
          Requested task operations: MKF,CALMERGE,SCREEN
        Processed prefilter_columns: NICERV6
    Processed niprefilter2_coltypes: BASE,NICERV6
           Processed geomag_columns: solarphi_oulu.fits(SOLAR_PHI),kp_potsdam.fits(KP),COR_NYM
   Inputs:
   (INDIR) /home/jovyan/project/_data/NICER/1012020114
   (UF)    /home/jovyan/project/_data/NICER/1012020114/xti/event_uf
   (CL)    /home/jovyan/project/_data/NICER/1012020114/xti/event_cl
   (MKF)   /home/jovyan/project/_data/NICER/1012020114/auxil/ni1012020114.mkf
 
                         MPU List: 0-6
                           OBS_ID: 1012020114
                           OBJECT: BKGD_RXTE_2
                         Position: RA    60.0000  Dec     2.0000 [deg] OBJECT
                                   RA    60.0003  Dec     1.9996 [deg] NOMINAL
                                   RA        OBJ  Dec        OBJ [deg] REQUESTED
 
   CALDBVER = 
   SOFTVER  = Hea_26Sep2025_V6.36_NICER_2025-09-05_V015
 
 ========== Running nicercal ==========
 nicercal 1.12
   MPU List: 0-6
   MPU0 ni1012020114_0mpu0_ufa.evt
   MPU1 ni1012020114_0mpu1_ufa.evt
   MPU2 ni1012020114_0mpu2_ufa.evt
   MPU3 ni1012020114_0mpu3_ufa.evt
   MPU4 ni1012020114_0mpu4_ufa.evt
   MPU5 ni1012020114_0mpu5_ufa.evt
   MPU6 ni1012020114_0mpu6_ufa.evt
 nimpumerge 1.7
   Master sort -> /home/jovyan/project/_data/NICER/1012020114/xti/event_cl/ni1012020114_0mpu7_ufa.evt
   Append MPU GTIs
 nifpmsel 1.11
   FPM List: launch
   Recalculating GTIs
 ========== Running niprefilter/niprefilter2 ==========
 niprefilter 2.12
   Running prefilter
 ========== Running niprefilter2 ==========
 niprefilter2 3.0
   Searching geomagnetic quantities
       (geomagnetic data from /home/jovyan/project/_data/geomag)
   Creating output file
   MPU HK files (interp):  0  1  2  3  4  5  6 
   MPU HK files (MPU-uf):  0  1  2  3  4  5  6 
   Event files
   Filter-level calculations
   Filter-level interpolations
     File: solarphi_oulu.fits    Column: SOLAR_PHI
     File: kp_potsdam.fits    Column: KP
   Adding COR_NYM 
   Adding DELTA_SLOW_LLD 
   Adding XTI_PNT_JITTER 
   Adding ANG_DIST_{X,Y} (target offset) 
   Appending original extension
   Filter file: /home/jovyan/project/_data/NICER/1012020114/auxil/ni1012020114.mkf
 ========== Running nimaketime ==========
 nimaketime 1.13
         Tracking?: REQUIRED
         On Target: < 54 [arcsec]
         Elevation: < 15 [deg]
      Bright Earth: < 30 [deg]
    Number of FPMs: > 7
 Star tracker good: REQUIRED
   TOT_LOWMEM_FIFO: SKIP
    DELTA_SLOW_LLD: -3.0-3.0
         NICER_SAA: SCREEN OUT
               SAA: SKIP
           COR_SAX: *-*
   UNDERONLY Range: 0-500
    OVERONLY Range: *-30
    Running maketime
 
                  Summary of Temporal Filtering
        Successive Filtering Stage     GoodTime #GTI
    ------------------------------   ---------- ----
             On-Target + Observing      6809.00   14  
        LOWMEM + Threshold Quality      6809.00   14  
                 SAA + COR + Orbit      6680.00   14  
                       Undershoots      6680.00   14  
                        Overshoots      6680.00   14  
                      Filtered GTI      6675.00   10  
 ========== Running nicermergeclean ==========
 nicermergeclean 1.15
 niautoscreen 1.6
    FPM exposure check
    FPM round-robbin check
    Under(only)shoot check
    Over(only)shoot check
    Noise rate check
    Extended noise peak (0.3-0.7 keV)
    MPU LOWMEM FIFO data losses
    MPU LOWMEM FIFO data loss fraction check
    Per-MPU shredded GTI check
        ---------------------------- Pointing GTIs ---------------------------
        ---------- MET ------------  ------------------UTC--------------------
    GTI        START -         STOP                START -                STOP
      1 120709828.00 - 120710220.00  2017-10-29T02:30:26 - 2017-10-29T02:36:58
      2 120715551.00 - 120715870.00  2017-10-29T04:05:49 - 2017-10-29T04:11:08
      3 120726264.00 - 120727080.00  2017-10-29T07:04:22 - 2017-10-29T07:17:58
      4 120736927.00 - 120738200.00  2017-10-29T10:02:05 - 2017-10-29T10:23:18
      5 120748240.00 - 120749320.00  2017-10-29T13:10:38 - 2017-10-29T13:28:38
      6 120765574.00 - 120766192.00  2017-10-29T17:59:32 - 2017-10-29T18:09:50
      7 120770505.00 - 120771675.00  2017-10-29T19:21:43 - 2017-10-29T19:41:13
      8 120776242.00 - 120777235.00  2017-10-29T20:57:20 - 2017-10-29T21:13:53
 
     Filter MPU_ROUND_ROBBIN - MPU overload resulting in rolling disablements
       All data survived this screening criterium
 
     Filter MPU_UNDERONLY_COUNT - Per-FPM undershoot resets (optical loading)
       All data survived this screening criterium
 
     Filter MPU_OVERONLY_COUNT - Per-FPM overshoot resets (background)
       All data survived this screening criterium
 
     Filter MPU_NOISE25_COUNT - Per-FPM noise peak rates
       All data survived this screening criterium
 
     Filter MPU_XRAY_PI_0030_0070 - Per-FPM 0.3-0.7 keV extended noise peak
       All data survived this screening criterium
 
     Filter MPU_LOWMEM_FIFO_FRAC - Per-MPU Low memory FIFO data loss fraction
       All data survived this screening criterium
 
     Filter GTI_COUNT - Per-MPU shredded GTI check
       All data survived this screening criterium
 
     Filter KNOWN_FPM - A priori known bad FPM times
       All data survived this screening criterium
 
     Filter KNOWN_MPU - A priori known bad MPU times
       All data survived this screening criterium
 
 
                        Screened FPM / MPU quicklook table
                               DET_ID Number                       |  MPU Num.
         F0       1       2       3       4       5       6        |          
    GTI  F01234567012345670123456701234567012345670123456701234567 |  M0123456
      1  F.........O......O.O.............................O....... |  M.......
      2  F.........O......O.O.............................O....... |  M.......
      3  F.........O......O.O.............................O....... |  M.......
      4  F.........O......O.O.............................O....... |  M.......
      5  F.........O......O.O.............................O....... |  M.......
      6  F.........O......O.O.............................O....... |  M.......
      7  F.........O......O.O.............................O....... |  M.......
      8  F.........O......O.O.............................O....... |  M.......
             Footnotes  O=known non-functional; X=screened; '.'=good
 
    Screening found no issues
 nicerclean 1.13
            PI Range: 20 - 1500
      Trumpet Filter: 1.100000+120.000000/PI+0.000000e+00*PI**4
          Time Range: 100-*
               Flags: Under(-) Under(-) Forced(-) NRing(-) Datamode(so+s+f)
          Expression: (((MPU_UNDER_COUNT<80)||(EVENT_FLAGS==bx0x1x000)))
   Screening...
   Updating keywords in output file...
 nifpmsel 1.11
   FPM List: launch,@/home/jovyan/project/_data/NICER/1012020114/xti/event_cl/ni1012020114_0mpu7_ufa.evt_detlist.txt
   Recalculating GTIs
 Event files written
  UFA: /home/jovyan/project/_data/NICER/1012020114/xti/event_cl/ni1012020114_0mpu7_ufa.evt
   CL: /home/jovyan/project/_data/NICER/1012020114/xti/event_cl/ni1012020114_0mpu7_cl.evt
 
 > Parameters:
 	indir     : /home/jovyan/project/_data/NICER/1012020114
 	geomag_path: /home/jovyan/project/_data/geomag
 	clobber   : yes]

In this particular case, we’ve run nicerl2 in such a way that the outputs are placed in the original downloaded data directories, overwriting any existing files with newer versions.

We can quickly examine the cleaned events directory of one of the NICER observations:

os.listdir(os.path.join(ni_data_dir, "1012020112", "xti", "event_cl"))
['ni1012020112_0mpu0_ufa.evt',
 'ni1012020112_0mpu1_ufa.evt',
 'ni1012020112_0mpu2_ufa.evt',
 'ni1012020112_0mpu3_ufa.evt',
 'ni1012020112_0mpu4_ufa.evt',
 'ni1012020112_0mpu5_ufa.evt',
 'ni1012020112_0mpu6_ufa.evt',
 'ni1012020112_0mpu7_ufa.evt',
 'ni1012020112_0mpu7_cl.evt']

About this Notebook#

Author: Abdu Zoghbi, HEASARC Staff Scientist

Author: David Turner, HEASARC Staff Scientist

Updated On: 2026-02-03

Additional Resources#

For more documentation on using HEASoft see :

Acknowledgements#

References#