cres 0.9.1

Cell resampling for collider events
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Supported event file formats
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub enum FileFormat {
    /// HepMC2 format, also known as `IO_GenEvent`
    #[default]
    HepMC2,
    #[cfg(feature = "lhef")]
    /// Les Houches Event Format
    Lhef,
    #[cfg(feature = "ntuple")]
    /// BlackHat ntuples
    BlackHatNtuple,
    #[cfg(feature = "stripper-xml")]
    /// XML format used by STRIPPER
    StripperXml,
}