3 /**************************************************************************
4 * This file is property of and copyright by the ALICE HLT Project *
5 * ALICE Experiment at CERN, All rights reserved. *
7 * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8 * for The ALICE HLT Project. *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
19 /** @file AliHLTAltroChannelSelectorComponent.cxx
20 @author Matthias Richter
22 @brief A filter/selective readout component for TPC Altro data. */
24 // see header file for class documentation
26 // refer to README to build package
28 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
31 #include "AliHLTAltroChannelSelectorComponent.h"
32 #include "AliHLTTPCTransform.h"
33 #include "AliHLTTPCDefinitions.h"
34 #include "AliAltroDecoder.h"
35 #include "AliAltroData.h"
37 /** ROOT macro for the implementation of ROOT specific class methods */
38 ClassImp(AliHLTAltroChannelSelectorComponent)
40 AliHLTAltroChannelSelectorComponent::AliHLTAltroChannelSelectorComponent()
43 fSkipCorrupted(false),
46 // see header file for class documentation
48 // refer to README to build package
50 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
53 AliHLTAltroChannelSelectorComponent::~AliHLTAltroChannelSelectorComponent()
55 // see header file for class documentation
58 const char* AliHLTAltroChannelSelectorComponent::GetComponentID()
60 // see header file for class documentation
61 return "AltroChannelSelector";
64 void AliHLTAltroChannelSelectorComponent::GetInputDataTypes(AliHLTComponentDataTypeList& list)
66 // see header file for class documentation
68 list.push_back(kAliHLTDataTypeDDLRaw|kAliHLTDataOriginTPC);
69 list.push_back(kAliHLTDataTypeHwAddr16);
72 AliHLTComponentDataType AliHLTAltroChannelSelectorComponent::GetOutputDataType()
74 // see header file for class documentation
75 return kAliHLTDataTypeDDLRaw|kAliHLTDataOriginTPC;
78 void AliHLTAltroChannelSelectorComponent::GetOutputDataSize(unsigned long& constBase, double& inputMultiplier)
80 // see header file for class documentation
85 AliHLTComponent* AliHLTAltroChannelSelectorComponent::Spawn()
87 // see header file for class documentation
88 return new AliHLTAltroChannelSelectorComponent;
91 int AliHLTAltroChannelSelectorComponent::DoInit(int argc, const char** argv)
93 // see header file for class documentation
97 for (int i=0; i<argc && iResult>=0; i++) {
99 if (argument.IsNull()) continue;
102 if (argument.CompareTo("-skip-corrupted")==0) {
106 } else if (argument.CompareTo("-talkative")==0) {
109 HLTError("unknown argument %s", argument.Data());
115 HLTError("missing parameter for argument %s", argument.Data());
122 int AliHLTAltroChannelSelectorComponent::DoDeinit()
124 // see header file for class documentation
128 int AliHLTAltroChannelSelectorComponent::DoEvent(const AliHLTComponentEventData& evtData,
129 const AliHLTComponentBlockData* blocks,
130 AliHLTComponentTriggerData& /*trigData*/,
131 AliHLTUInt8_t* outputPtr,
132 AliHLTUInt32_t& size,
133 AliHLTComponentBlockDataList& outputBlocks )
135 // see header file for class documentation
137 const int cdhSize=32;
139 // process the DLL input
141 const AliHLTComponentBlockData* pDesc=NULL;
143 AliAltroDecoder* decoder=NULL;
144 for (pDesc=GetFirstInputBlock(kAliHLTDataTypeDDLRaw); pDesc!=NULL; pDesc=GetNextInputBlock(), blockno++) {
147 // search for the active pad information
148 AliHLTUInt16_t* pActiveHwAddressArray=NULL;
150 for (int i=0; i<(int)evtData.fBlockCnt; i++ ) {
151 // search for selection data of hw address type
152 // which matches the data specification of the block
153 if (blocks[i].fDataType==kAliHLTDataTypeHwAddr16 && blocks[i].fSpecification==pDesc->fSpecification) {
154 pActiveHwAddressArray=reinterpret_cast<AliHLTUInt16_t*>(blocks[i].fPtr);
155 iArraySize=blocks[i].fSize/sizeof(AliHLTUInt16_t);
159 if (pActiveHwAddressArray==NULL) {
160 HLTWarning("no block of type %s for specification 0x%08x available, data block unchanged",
161 DataType2Text(kAliHLTDataTypeHwAddr16).c_str(),
162 pDesc->fSpecification);
166 if (decoder) delete decoder;
167 decoder=new AliAltroDecoder;
168 if (decoder->SetMemory(reinterpret_cast<UChar_t*>(pDesc->fPtr), pDesc->fSize)<0) {
169 HLTWarning("corrupted data block: initialization of decoder failed for block: %s specification %#x size %d",
170 DataType2Text(pDesc->fDataType).c_str(), pDesc->fSpecification, pDesc->fSize);
173 if (decoder->Decode()) {
174 HLTDebug("init decoder %p size %d", pDesc->fPtr,pDesc->fSize);
176 HLTWarning("corrupted data block: decoding failed for raw data block: %s specification %#x size %d",
177 DataType2Text(pDesc->fDataType).c_str(), pDesc->fSpecification, pDesc->fSize);
182 int rcuTrailerLength=decoder->GetRCUTrailerSize();
183 if (rcuTrailerLength*sizeof(AliHLTUInt32_t)>pDesc->fSize-cdhSize) {
184 HLTWarning("corrupted data block: RCU trailer length exceeds buffer size");
189 // forward the whole block
190 outputBlocks.push_back(*pDesc);
197 AliHLTUInt32_t iOutputSize=0;
198 AliHLTUInt32_t iNofAltro40=0;
199 AliHLTUInt32_t iCapacity=size;
200 AliAltroData channel;
201 while (decoder->NextChannel(&channel) && iResult>=0) {
204 int hwAddress=channel.GetHadd();
206 for (active=0; active<iArraySize; active++) {
207 if (pActiveHwAddressArray[active]==(AliHLTUInt16_t)hwAddress) {
211 if (active>=iArraySize) {
212 HLTDebug("ALTRO block %#x (%d) discarded (inactive)", hwAddress, hwAddress);
216 // no of 10 bit words is without the fill words to fill complete 40 bit words
217 // in addition, align to complete 40 bit words (the '+3')
218 // also, the 5 bytes of the Altro trailer must be added to get the full size
219 int channelSize=((channel.GetDataSize()+3)/4)*5;
221 HLTDebug("ALTRO block hwAddress 0x%08x (%d) selected (active), size %d", hwAddress, hwAddress, channelSize);
222 if (iOutputSize==0) {
223 // first add the RCU trailer
224 AliHLTUInt8_t* pSrc=reinterpret_cast<AliHLTUInt8_t*>(pDesc->fPtr);
225 pSrc+=pDesc->fSize-rcuTrailerLength;
226 if ((iResult=CopyBlockToEnd(outputPtr, iCapacity, iOutputSize, pSrc, rcuTrailerLength))>=0) {
227 assert(iResult==rcuTrailerLength);
228 iOutputSize+=rcuTrailerLength;
230 HLTError("failed to write RCU trailer of length %d for block %d, too little space in output buffer?", rcuTrailerLength, blockno);
236 if ((iResult=decoder->CopyBackward(outputPtr, iCapacity-iOutputSize))>=0) {
237 if (channelSize == iResult) {
238 if (channelSize%5 == 0) {
239 iNofAltro40+=channelSize/5;
240 iOutputSize+=channelSize;
242 if (fTalkative) HLTWarning("corrupted ALTRO channel: incomplete 40 bit word");
247 if (fTalkative) HLTWarning("internal error: failed to copy full channel: %d out of %d bytes", iResult, channelSize);
252 if (fTalkative) HLTError("failed to write ALTRO channel of length %d for block %d", channelSize, blockno);
253 // corrupted channel, but keep going
261 // write the common data header
262 if ((iResult=CopyBlockToEnd(outputPtr, iCapacity, iOutputSize, pDesc->fPtr, cdhSize))>=0) {
263 assert(iResult==cdhSize);
264 iOutputSize+=cdhSize;
266 // set new length of the data block
267 AliHLTUInt32_t* pCdhSize=reinterpret_cast<AliHLTUInt32_t*>(outputPtr+iCapacity-iOutputSize);
268 *pCdhSize=iOutputSize;
270 // set number of Altro words
271 AliHLTUInt32_t* pNofAltro40=reinterpret_cast<AliHLTUInt32_t*>(outputPtr+iCapacity-rcuTrailerLength);
272 *pNofAltro40=iNofAltro40;
274 // insert block descriptor
275 AliHLTComponentBlockData bd;
277 bd.fOffset=iCapacity-iOutputSize;
278 bd.fSize=iOutputSize;
279 bd.fDataType=pDesc->fDataType;
280 bd.fSpecification=pDesc->fSpecification;
281 outputBlocks.push_back(bd);
282 iCapacity-=iOutputSize;
284 HLTError("failed to write CDH of length %d for block %d", cdhSize, blockno);
288 HLTInfo("data block %d (0x%08x): selected %d out of %d ALTRO channel(s), %d corrupted channels skipped", blockno, pDesc->fSpecification, iSelected, iTotal, iCorrupted);
290 if (decoder) delete decoder;
293 outputBlocks.clear();
296 // !!! do not change the size since the output buffer is filled from the end !!!
301 int AliHLTAltroChannelSelectorComponent::CopyBlockToEnd(AliHLTUInt8_t* pTgt, unsigned capacity, unsigned position, void* pSrc, unsigned size)
304 if (pTgt==NULL || pSrc==NULL) return -EINVAL;
305 if (capacity-position<size) return -ENOSPC;
307 memcpy(pTgt+(capacity-position-size), pSrc, size);