check_rec_unit_cell_validity: Validity and compatibility of a cry object of class...

View source: R/validations.R

check_rec_unit_cell_validityR Documentation

Validity and compatibility of a cry object of class 'rec_unit_cell'

Description

An object of class 'rec_unit_cell' is a named list of length 6. The first three fields are numeric, the last three of class 'angle'.

Usage

check_rec_unit_cell_validity(x, message = FALSE)

Arguments

x

Object of class 'rec_unit_cell'.

message

A logical variable. If TRUE, the function prints a message on the errors, if any (default is FALSE, i.e. no message printed).

Value

ans A logical value. TRUE means that the input is a valid object of class'rec_unit_cell'.

Examples

# Create an object of class 'rec_unit_cell'
x <- create_rec_unit_cell()

# Check its validity
check_rec_unit_cell_validity(x)

# Now change a field
x$alphar <- 123

# Check validity again
check_rec_unit_cell_validity(x,TRUE)


cry documentation built on Oct. 10, 2022, 9:06 a.m.