File indexing completed on 2024-04-06 12:05:23
0001 #ifndef NuclearInteractionReco_Fwd_h
0002 #define NuclearInteractionReco_Fwd_h
0003 #include <vector>
0004 #include "DataFormats/Common/interface/Ref.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006
0007 namespace reco {
0008 class NuclearInteraction;
0009
0010 typedef std::vector<NuclearInteraction> NuclearInteractionCollection;
0011
0012 typedef edm::Ref<NuclearInteractionCollection> NuclearInteractionRef;
0013
0014 typedef edm::RefVector<NuclearInteractionCollection> NuclearInteractionRefVector;
0015
0016 typedef NuclearInteractionRefVector::iterator NuclearInteraction_iterator;
0017 }
0018
0019 #endif