00001
00002
00003
00004
00005
00006
00007
00009
00010 #include <cassert>
00011
00012 #include "CandChop/AlgChopListGeneric.h"
00013 #include "CandChop/CandChopListHandle.h"
00014 #include "CandChop/DigitVector.h"
00015
00016
00017 #include "Algorithm/AlgConfig.h"
00018 #include "Algorithm/AlgFactory.h"
00019 #include "Algorithm/AlgHandle.h"
00020 #include "CandData/CandHeader.h"
00021 #include "CandData/CandRecord.h"
00022 #include "CandDigit/CandDigitHandle.h"
00023 #include "CandDigit/CandDigitListHandle.h"
00024 #include "CandDigit/CandDigitList.h"
00025 #include "Candidate/CandContext.h"
00026 #include "MessageService/MsgService.h"
00027 #include "MinosObjectMap/MomNavigator.h"
00028 #include "RawData/RawHeader.h"
00029 #include "RawData/RawRecord.h"
00030 #include "RawData/RawDigitDataBlock.h"
00031 #include "UgliGeometry/UgliGeomHandle.h"
00032 #include "UgliGeometry/UgliStripHandle.h"
00033 #include "Validity/VldContext.h"
00034 #include "Calibrator/Calibrator.h"
00035 #include "DataUtil/GetRawBlock.h"
00036
00037 ClassImp(AlgChopListGeneric)
00038 CVSID( " $Id: AlgChopListGeneric.cxx,v 1.4 2010/01/06 17:15:44 rhatcher Exp $ ");
00039
00040 struct compareDigitTimes : public binary_function<const CandDigitHandle&, const CandDigitHandle&, bool> {
00041 bool operator()(const CandDigitHandle& d1, const CandDigitHandle& d2) {
00042 return (d1.GetTime() < d2.GetTime());
00043 }
00044 };
00045
00046 const RawChannelId kQieRcid(Detector::kNear,ElecType::kQIE,0,0,false,false);
00047
00048
00049
00050 AlgChopListGeneric::AlgChopListGeneric()
00051 {
00052 }
00053
00054
00055 AlgChopListGeneric::~AlgChopListGeneric()
00056 {
00057 }
00058
00059
00060
00061
00062 void AlgChopListGeneric::RunAlg(AlgConfig& ,
00063 CandHandle &candHandle,
00064 CandContext &candContext)
00065 {
00069
00070 assert(candHandle.InheritsFrom("CandChopListHandle"));
00071
00072
00073
00074 assert(candContext.GetDataIn());
00075
00076 if (!(candContext.GetDataIn()->InheritsFrom("CandDigitListHandle"))) {
00077 MSG("Chop",Msg::kWarning ) << "Data into AlgChopListGeneric is not a digit list." << std::endl;
00078 }
00079
00080 const CandDigitListHandle *cdlh_ptr =
00081 dynamic_cast<const CandDigitListHandle*>(candContext.GetDataIn());
00082
00083 const MomNavigator *mom = candContext.GetMom();
00084 const RawDigitDataBlock* rddb = DataUtil::GetRawBlock<RawDigitDataBlock>(mom);
00085 if (!rddb) {
00086 MSG("Chop", Msg::kWarning) << "No RawDigitDataBlock in RawRecord." << endl;
00087 return;
00088 }
00089
00090
00091 AlgFactory &af = AlgFactory::GetInstance();
00092 AlgHandle ah = af.GetAlgHandle("AlgChop","default");
00093 CandContext cxx(this,candContext.GetMom());
00094
00095 const VldContext &context = *(candContext.GetCandRecord()->GetVldContext());
00096 if(context.GetDetector() != Detector::kNear)
00097 MSG("Chop",Msg::kError) << "Running the Generic algorithm on FD data is a no-no!" << endl;
00098
00099 Calibrator& cal = Calibrator::Instance();
00100 UgliGeomHandle ugli(context);
00101
00102
00103
00104
00105 DigitVector digits(cdlh_ptr);
00106
00107 UInt_t ndigits = digits.size();
00108
00109
00110
00111
00112
00113
00114 std::vector<int> digit_tdc(ndigits);
00115 std::vector<UInt_t> digit_plane(ndigits);
00116
00117 for(UInt_t i=0;i<ndigits;i++) {
00118 digit_tdc[i] = (cal.GetTDCFromTime(digits[i].GetTime(CalTimeType::kNone), kQieRcid));
00119 digit_plane[i] = digits[i].GetPlexSEIdAltL().GetPlane();
00120
00121
00122
00123
00124 }
00125
00126
00127 Int_t tfirst = digit_tdc[0];
00128 Int_t tlast = digit_tdc[0];
00129 for(UInt_t i=0;i<ndigits;i++) {
00130 if(digit_tdc[i] < tfirst) tfirst = digit_tdc[i];
00131 if(digit_tdc[i] > tlast ) tlast = digit_tdc[i];
00132 }
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146 }
00147
00148
00149 void AlgChopListGeneric::Trace(const char * ) const
00150 {
00151 }
00152