Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:25:10

0001 #include "SimGeneral/GFlash/interface/GflashHit.h"
0002 
0003 GflashHit::GflashHit() : theTime(0), theEnergy(0), thePosition(0) {}
0004 
0005 GflashHit::GflashHit(double time, double energy, Gflash3Vector &pos) {
0006   theTime = time;
0007   theEnergy = energy;
0008   thePosition = pos;
0009 }
0010 
0011 GflashHit::~GflashHit() {}