Package pylal :: Module pylal_exttrig_llutils :: Class AnalysisSingleton
[hide private]
[frames] | no frames]

Class AnalysisSingleton

source code

object --+    
         |    
 Singleton --+
             |
            AnalysisSingleton

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
read_basic_setup(self) source code
 
set_cp(self, cp) source code
 
get_cp(self) source code
 
set_logfile(self, logfile) source code
 
get_logfile(self) source code
 
info(self, text, item=None, onscreen=True)
Puts some information onto the logfile
source code
 
system(self, cmd, item=None, divert_output_to_log=True)
Makes a system call.
source code
 
get_lockname(self)
Returns the name of the lock file
source code
 
check_lock(self)
Checks if another instance of this code is running.
source code
 
set_lock(self)
Sets the lock file and writes the PID of this process
source code
 
del_lock(self)
Removes the lock file
source code

Inherited from Singleton: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

check_lock(self)

source code 

Checks if another instance of this code is running. See http://code.activestate.com/recipes/546512/