Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:02

0001 #include "Validation/EcalClusters/interface/EcalSimPhotonMCTruth.h"
0002 
0003 #include <iostream>
0004 
0005 EcalSimPhotonMCTruth::EcalSimPhotonMCTruth(int isAConversion,
0006                                            const math::XYZTLorentzVectorD &v,
0007                                            float rconv,
0008                                            float zconv,
0009                                            const math::XYZTLorentzVectorD &convVertex,
0010                                            const math::XYZTLorentzVectorD &pV,
0011                                            const std::vector<const SimTrack *> &tracks)
0012     : isAConversion_(isAConversion),
0013       thePhoton_(v),
0014       theR_(rconv),
0015       theZ_(zconv),
0016       theConvVertex_(convVertex),
0017       thePrimaryVertex_(pV),
0018       tracks_(tracks) {}