Go to the documentation of this file.00001
00002 #include "DataFormats/HeavyIonEvent/interface/HeavyIon.h"
00003
00004 pat::HeavyIon::HeavyIon(){;}
00005
00006 pat::HeavyIon::HeavyIon(const reco::CentralityCollection & c, const reco::EvtPlaneCollection & e) :
00007 cents_(c),
00008 planes_(e),
00009 isMC_(false),
00010 b_(-99),
00011 npart_(-99),
00012 ncoll_(-99),
00013 nhard_(-99),
00014 phi_(-99) {;}
00015
00016 pat::HeavyIon::HeavyIon(const reco::CentralityCollection & c, const reco::EvtPlaneCollection & e, double b, int npart, int ncoll, int nhard, double phi) :
00017 cents_(c),
00018 planes_(e),
00019 isMC_(true),
00020 b_(b),
00021 npart_(npart),
00022 ncoll_(ncoll),
00023 nhard_(nhard),
00024 phi_(phi) {;}
00025
00026
00027