StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSpaNoise.cc
1 // $Id: StSpaNoise.cc,v 1.1 2015/06/23 16:26:19 jeromel Exp $
2 //
3 // $Log: StSpaNoise.cc,v $
4 // Revision 1.1 2015/06/23 16:26:19 jeromel
5 // First version created from the SSD code and reshaped
6 //
7 // Revision 1.1 2015/04/19 17:30:31 bouchet
8 // initial commit ; SST codes
9 //
10 // Revision 1.1 2015/01/29 20:16:37 bouchet
11 // SSD utils for hit reconstruction
12 //
13 // Revision 1.1 2006/10/16 16:43:29 bouchet
14 // StSstUtil regroups now methods for the classes StSstStrip, StSstCluster and StSstPoint
15 //
16 // Revision 1.2 2005/05/13 08:39:32 lmartin
17 // CVS tags added
18 //
19 
20 #include "StSpaNoise.hh"
21 
22 StSpaNoise* StSpaNoise::giveCopy()
23 {
24  StSpaNoise *ptrClone = new StSpaNoise(mNStrip, mPedestal, mSigma);
25 
26  ptrClone->mNoiseValue = mNoiseValue;
27  ptrClone->mIsActive = mIsActive;
28  return ptrClone;
29 }
30