Page 1 of 1

Load using signal details in a chemstation macro

Posted: Fri Nov 01, 2013 7:38 pm
by jtierney
Hello,

I am writing a macro in Agilent LC Chemstation that runs during a sequence and exports the signal chromatograms to .txt files after each sample is finished. I'm working in SIM mode, and although the method contains the Signal Details for all the ions I am monitoring, LoadSignal in my macro only loads the TIC, not the EICs. I am able to load the EICs in data analysis by clicking the "Load using signal details" box. My macro will also export the EICs if I run it in data analysis after first checking this box. Is there an equivalent to the "load using signal details" check box in macro space that I need to call in my code? Otherwise, is there another way I can get LoadSignal to load all the EICs into the Chromreg register?

Thanks for any assistance,

Jessica

Re: Load using signal details in a chemstation macro

Posted: Sun Nov 10, 2013 3:38 pm
by nimbi63
Are you loading individual signals? You could get Num=RegSize(ChromReg), to get the number of signals, the use
For i = 1 to Num
Load signal Chromreg
process signal
Next i