meerkat is hosted by Hepforge, IPPP Durham
Meerkat  v1r3
Multidimensional kernel density estimation package
AbsPhaseSpace.cpp
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <vector>
3 
4 #include "AbsPhaseSpace.hh"
5 
6 AbsPhaseSpace::AbsPhaseSpace(const char* phaseSpaceName) {
7  strncpy(m_name, phaseSpaceName, 255);
8  m_name[255] = 0;
9 }
10 
12 
13 }
AbsPhaseSpace(const char *phaseSpaceName)
Constructor.
char m_name[256]
Phase space name.
virtual ~AbsPhaseSpace()
Destructor.