00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ATLFAST_MCWEIGHTCONTAINERCOLLECTION_H
00009 #define ATLFAST_MCWEIGHTCONTAINERCOLLECTION_H
00010
00011 #ifndef HEPMC_WEIGHT_CONTAINER_H
00012 #include "HepMC/WeightContainer.h"
00013 #endif
00014
00015 #ifndef STD_VECTOR_H
00016 #include <vector>
00017 #define STD_VECTOR_H
00018 #endif
00019
00020 namespace Atlfast {
00021 typedef std::vector<double> MCweightContainer;
00022 typedef std::vector<MCweightContainer> MCweightContainerCollection;
00023 }
00024
00025 #endif
00026
00027