avery 0.7.1

A scattering event format for converting between other formats
Documentation
pub mod event;
#[cfg(feature = "hepmc2")]
pub mod hepmc2;
#[cfg(feature = "lhef")]
pub mod lhef;
#[cfg(feature = "ntuple")]
pub mod ntuple;
#[cfg(feature = "stripper-xml")]
pub mod stripper_xml;
mod util;

pub use crate::event::Event;

pub fn convert<T, U>(event: T) -> U
where
    T: Into<Event>,
    U: From<Event>,
{
    U::from(event.into())
}