gen_atomlists_generic: Generate atom lists for generic molecular field

Description Usage Arguments Examples

Description

Generate atom lists for generic molecular field

Usage

1

Arguments

mdb

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (mdb) 
{
    nmols <- length(mdb)
    atomlists <- list()
    for (imol in 1:nmols) {
        mol <- mdb[[imol]]
        natoms <- length(mol$atoms)
        atomlists[[imol]] <- 1:natoms
    }
    atomlists
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.