#ifndef ROOT_THcShowerArray #define ROOT_THcShowerArray //#define HITPIC 1 #ifdef HITPIC #define NPERLINE 5 #endif ////////////////////////////////////////////////////////////////////////////// // // THcShowerArray // // A Hall C Fly's Eye Shower Array // // Subdetector for the fly's eye part of the SHMS shower counter. // ////////////////////////////////////////////////////////////////////////////// #include "THaSubDetector.h" #include "THaTrack.h" #include "TClonesArray.h" #include "THcShowerHit.h" #include <iostream> #include <fstream> class THaEvData; class THaSignalHit; class THcShowerArray : public THaSubDetector { public: THcShowerArray( const char* name, const char* description, Int_t planenum, THaDetectorBase* parent = NULL); virtual ~THcShowerArray(); virtual void Clear( Option_t* opt="" ); virtual Int_t Decode( const THaEvData& ); virtual EStatus Init( const TDatime& run_time ); virtual Int_t CoarseProcess( TClonesArray& tracks ); virtual Int_t FineProcess( TClonesArray& tracks ); Bool_t IsTracking() { return kFALSE; } virtual Bool_t IsPid() { return kFALSE; } virtual Int_t ProcessHits(TClonesArray* rawhits, Int_t nexthit); virtual Int_t AccumulatePedestals(TClonesArray* rawhits, Int_t nexthit); virtual void CalculatePedestals( ); virtual void InitializePedestals( ); // Cluster to track association method. Int_t MatchCluster(THaTrack*, Double_t&, Double_t&); // Get total energy deposited in the cluster matched to the given // spectrometer Track. Float_t GetShEnergy(THaTrack*); // Double_t fSpacing; not used // TClonesArray* fParentHitList; not used Double_t GetEarray() { return fEarray; }; // Fiducial volume limits. Double_t fvXmin(); Double_t fvYmax(); Double_t fvXmax(); Double_t fvYmin(); protected: #ifdef HITPIC char **hitpic; Int_t piccolumn; #endif Double_t* fA; // [fNelem] ADC amplitudes of blocks Double_t* fP; // [fNelem] Event by event (FADC) pedestals Double_t* fA_p; // [fNelem] sparsified, pedestal subtracted // (FASTBUS) ADC amplitudes TClonesArray* fADCHits; // List of ADC hits // Parameters Int_t fNRows; Int_t fNColumns; Double_t fXFront; // Front position X Double_t fYFront; // Front position Y Double_t fZFront; // Front position Z, from FP Double_t fXStep; // distance btw centers of blocks along X Double_t fYStep; // distance btw centers of blocks along Y Double_t fZSize; // Block size along Z Double_t** fXPos; // block X coordinates Double_t** fYPos; // block Y coordinates Int_t fUsingFADC; // != 0 if using FADC in sample mode Int_t fPedSampLow; // Sample range for Int_t fPedSampHigh; // dynamic pedestal Int_t fDataSampLow; // Sample range for Int_t fDataSampHigh; // sample integration Int_t fLayerNum; // 2 for SHMS // Accumulators for pedestals go here Int_t fNPedestalEvents; /* Pedestal event counter */ Int_t fMinPeds; /* Only analyze/update if num events > */ // 2D arrays Int_t *fPedSum; /* Accumulators for pedestals */ Int_t *fPedSum2; Int_t *fPedLimit; // Analyze pedestal if ADC signal < PedLimit Int_t *fPedCount; // [fNelem] counter of pedestal analysis Float_t *fPed; // [fNelem] pedestal positions Float_t *fSig; // [fNelem] pedestal rms-s Float_t *fThresh; // [fNelem] ADC thresholds Double_t* fGain; // [fNelem] Gain constants from calibration //Energy depositions. Double_t* fE; // [fNelem] energy depositions in the blocks. Double_t fEarray; // Total Energy deposition in the array. Int_t fNhits; // Total number of hits Int_t fNclust; // Number of hit clusters Int_t fNtracks; // Number of shower tracks, i.e. number of // cluster-to-track associations THcShowerClusterList* fClusterList; // List of hit clusters virtual Int_t ReadDatabase( const TDatime& date ); virtual Int_t DefineVariables( EMode mode = kDefine ); ClassDef(THcShowerArray,0); // Fly;s Eye calorimeter array }; #endif