er  dev
ERNDDigi.cxx
1 /********************************************************************************
2  * Copyright (C) Joint Institute for Nuclear Research *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 
9 #include "ERNDDigi.h"
10 
11 ERNDDigi::ERNDDigi(ERChannel stilbenNb, float edep, float lightYoeld, float time,
12  float neutronProb, float tac/*-1*/)
13  : ERDigi(edep, time, stilbenNb), fLightYield(lightYoeld),
14  fNeutronProb(neutronProb), fTAC(tac)
15 {}
16 
17 ClassImp(ERNDDigi)
Definition: ERDigi.h:15