Dataset¶
-
class
Dataset.Dataset(*fileList)¶ Main class for NAMDAnalyzer. It manages the different data types (psf, dcd, vel,…)
It directly inherits from
NAMDPSFandNAMDDCDso that all methods from these are directly accessible inDatasetclass.Attributes logData, velData, dcdData, psfData and pdbData are available to access dataset loaded rom these files.
-
importFile(dataFile, fileType=None)¶ Method used to import one file.
The method automatically stores the corresponding class in NAMDAnalyzer variables like self.logData. If something already exists, it will be overridden.
Parameters:
-
selection(selT='all')¶ Uses the
Selectionclass to select atoms with a simple string command.Default frame is the last one.
Parameters: selText – a selection string (default ‘all’) Returns: a Selectionclass instance
-