ROOT logo
#ifndef HRPCCLUSFPAR_H
#define HRPCCLUSFPAR_H

#include "hparcond.h"

class HRpcClusFPar : public HParCond {

	protected:
		Float_t fNsigmasX;    // Number of sigmas for position searching window
		Float_t fNsigmasT;    // Number of sigmas for time searching window

	public:
		HRpcClusFPar(const char* name="RpcClusFPar",
				const char* title="Cluster finder parameters for the Rpc Detector",
				const char* context="RpcClusFProduction");
		~HRpcClusFPar() {;}

		Float_t getNsigmasX()  { return fNsigmasX; }
		Float_t getNsigmasT()  { return fNsigmasT; }

		void fill(Float_t aNsigX,Float_t aNsigT) {

			fNsigmasX  = aNsigX;
			fNsigmasT  = aNsigT;

		}

		void   clear();
		void   putParams(HParamList*);
		Bool_t getParams(HParamList*);

		ClassDef(HRpcClusFPar,1) // Container for the RPC cluster finding parameters

};

#endif  /*!HRPCCLUSFPAR_H*/
 hrpcclusfpar.h:1
 hrpcclusfpar.h:2
 hrpcclusfpar.h:3
 hrpcclusfpar.h:4
 hrpcclusfpar.h:5
 hrpcclusfpar.h:6
 hrpcclusfpar.h:7
 hrpcclusfpar.h:8
 hrpcclusfpar.h:9
 hrpcclusfpar.h:10
 hrpcclusfpar.h:11
 hrpcclusfpar.h:12
 hrpcclusfpar.h:13
 hrpcclusfpar.h:14
 hrpcclusfpar.h:15
 hrpcclusfpar.h:16
 hrpcclusfpar.h:17
 hrpcclusfpar.h:18
 hrpcclusfpar.h:19
 hrpcclusfpar.h:20
 hrpcclusfpar.h:21
 hrpcclusfpar.h:22
 hrpcclusfpar.h:23
 hrpcclusfpar.h:24
 hrpcclusfpar.h:25
 hrpcclusfpar.h:26
 hrpcclusfpar.h:27
 hrpcclusfpar.h:28
 hrpcclusfpar.h:29
 hrpcclusfpar.h:30
 hrpcclusfpar.h:31
 hrpcclusfpar.h:32
 hrpcclusfpar.h:33
 hrpcclusfpar.h:34
 hrpcclusfpar.h:35
 hrpcclusfpar.h:36