def __init__(self,debugFlag,db,output):
     """
     Initialises the class.
     
     """
     Utilities.__init__(self,debugFlag)  
     self.db = db
     self.outputFile = output
 def __init__(self,debugFlag, db,output):
     """
     Initialises the class, and passes the pulsar catalog to it.
     
     """
     Utilities.__init__(self,debugFlag)  
     self.db = db
     self.harmonics = [1, 0.5, 0.3, 0.25, 0.2, 0.16, 0.142, 0.125, 0.111, 0.1, 0.0909,0.0833,0.0769,0.0714,0.0666,0.0625,0.03125,0.015625]
     self.width          = 10 # The width of the image viewing panel.
     self.height         = 8  # The height of the image viewing panel.
 def __init__(self,debugFlag):
     """
     Default constructor.
     
     Parameters:
     
     debugFlag    -    the debugging flag. If set to True, then detailed
                       debugging messages will be printed to the terminal
                       during execution.
     """
     Utilities.__init__(self,debugFlag)
     self.numberOfScores = 22 # This is the default - can be set to other values.
     self.epsilon = 0.000005 # Used during score comparison.
 def __init__(self,debugFlag, db, st,mt):
     """
     Initialises the class, and sets up initial variables.
     
     """
     Utilities.__init__(self,debugFlag)
     self.matcher = mt         
     self.db = db
     self.settings = st
     
     # This call creates the headers for an output CSV file that will
     # be used to store shortened versions of candidate matches found.
     self.createCSVFile(self.matcher.outputPath)
 def __init__(self,debugFlag):
     """
     Default constructor.
     
     Parameters:
     
     debugFlag     -    the debugging flag. If set to True, then detailed
                        debugging messages will be printed to the terminal
                        during execution.
     candidateName -    the name for the candidate, typically the file path.
     """
     
     Utilities.__init__(self,debugFlag)
     self.accuacy = -1.0
     self.radius  = -1.0
     self.path    = "Settings.txt"
     self.padding = 3600
     self.telescope = "Parkes"
 def __init__(self,debugFlag):
     Utilities.__init__(self,debugFlag)