CMS 3D CMS Logo

CSCStripHit.cc

Go to the documentation of this file.
00001 #include <RecoLocalMuon/CSCRecHitD/src/CSCStripHit.h>
00002 #include <iostream>
00003 
00004 CSCStripHit::CSCStripHit() :
00005   theDetId(),
00006   theStripHitPosition(),
00007   theStripHitTmax(),     
00008   theStrips(),
00009   theStripHitADCs(),
00010   theStripHitRawADCs(),
00011   theConsecutiveStrips(),
00012   theClosestMaximum(),
00013   isDeadStripAround()
00014 {}
00015 
00016 CSCStripHit::CSCStripHit( const CSCDetId& id, 
00017                           const float& sHitPos, 
00018                           const int& tmax, 
00019                           const ChannelContainer& strips, 
00020                           const StripHitADCContainer& s_adc,
00021                           const StripHitADCContainer& s_adcRaw,
00022                           const int& numberOfConsecutiveStrips,
00023                           const int& closestMaximum,
00024                           const bool& isNearDeadStrip) :
00025   theDetId( id ), 
00026   theStripHitPosition( sHitPos ),
00027   theStripHitTmax( tmax ),
00028   theStrips( strips ),
00029   theStripHitADCs( s_adc ),
00030   theStripHitRawADCs( s_adcRaw ),
00031   theConsecutiveStrips(numberOfConsecutiveStrips),
00032   theClosestMaximum(closestMaximum),
00033   isDeadStripAround(isNearDeadStrip)
00034 {}
00035 
00036 CSCStripHit::~CSCStripHit() {}
00037 
00038 

Generated on Tue Jun 9 17:43:50 2009 for CMSSW by  doxygen 1.5.4