Re: [odin-devel] questions on IDEA integration
develop, simulate and run magnetic resonance sequences
Brought to you by:
wodan
|
From: Thies J. <th...@jo...> - 2009-04-14 08:12:21
|
Hi Lazar, > If I were to follow the first route, my understanding is that I do not have > to modify the default reconstruction chain. I just have to supply the > SeqVector to the SeqObjLoop and in the reconstruction parameter > set supply this to the epiadc.set_reco_vector(average, vector). > Now, do I have to do the same for the repetition loop? You have to add the vector to the appropriate loop (via the [...] operator while building the sequence). For automatic reconstruction, you also have to inform the EPI Readout about this vector, using epiadc.set_reco_vector(average, vector) > Current odinepi sequence simply repeats the sequence body N times > without supplying any information to the recon. However, it appears that > "repetition" index exists. I have tried to add it to the recon > parameters and it failed. Only the indices of the enum 'recoDim' up to the index 'templtype' are available to sequence programming, the others are only used internally in odinreco. The 'repetition' index is set automatically for all parts of the sequence which are repeated unchanged. > I mean the sequence compiles, but the sequence diagram is not generated > causing a segmentation fault. In any case, it should not segfault. Please send me the code to my private Email adress (th...@jo...) and I will look into it. Probably some missing range checking... > Somehow, I have managed to add the average index to the recon code... > > Are the counters added differently? I do not think so. Maybe the > repetition vector > is not needed? just repeat the sequence and that is all? You do not have to specify an explicit repetition vector/index, just repeat part of the sequence (as mentioned above). Best wishes, Thies |