CheetahLogFile.txt 819 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283
  1. Neuralynx Base Log File Opened - File Name: C:\Windows\TEMP\2016-11-28_21-50-00\CheetahLogFile.txt
  2. Time Opened: (m/d/y) 11/28/2016 at time 21:50:0.364
  3. Cheetah Version: 5.6.3
  4. Cheetah Build Number: 20120711A0851
  5. PC Host ID: 001517d18af2
  6. Licensed User: NTNU_6862
  7. Licensed AD Channels: 128
  8. Licensed VT: 3
  9. Processor Type: Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
  10. Number of cores: 24
  11. Total System Memory: 3567 MB
  12. Operating System: Windows 7 32bit Service Pack 1
  13. Feature Engine Version: 2.0.0
  14. Cluster Engine Version: 2.0.0
  15. Graphics Card: Quadro 400
  16. Video Driver Version: 8.17.12.7090
  17. Dedicated Video Memory: 512MB
  18. Monitor 0 Resolution: 3840 x 2160
  19. -* NOTICE *- 21:50:00.366 - 0 - RealTimeClock::InitRealTimeClock() - CPU clock frequency for timestamp calculations is 2
  20. -* NOTICE *- 21:50:00.366 - 409 - DigitalIOContainer::InitializeMeasurementComputingDigitalIOBoards() - There are no Measurement Computing boards installed on this computer. The driver returned 126. Check to ensure all boards are installed and visible in Instacal. Otherwise, contact Neuralynx for assistance.
  21. -* NOTICE *- 21:50:00.482 - 116304 - D3D Primary Graphics Adapter: NVIDIA Quadro 400
  22. -* NOTICE *- 21:50:00.482 - 116341 - D3D Primary Graphics Driver Version: 8.17.12.7090
  23. -* NOTICE *- 21:50:00.535 - 169637 - RealTimeClock::InitRealTimeClock() - CPU clock frequency for timestamp calculations is 2
  24. -* NOTICE *- 21:50:00.639 - 273453 - Allocated 10440000 Bytes, #entries:10000 EntrySize:1044 PreEntries 0
  25. -* NOTICE *- 21:50:00.639 - 273820 - Allocated 1120000 Bytes, #entries:10000 EntrySize:112 PreEntries 0
  26. -* NOTICE *- 21:50:00.640 - 274331 - Allocated 1760000 Bytes, #entries:10000 EntrySize:176 PreEntries 0
  27. -* NOTICE *- 21:50:00.641 - 275193 - Allocated 3040000 Bytes, #entries:10000 EntrySize:304 PreEntries 0
  28. -* NOTICE *- 21:50:00.641 - 275275 - Allocated 184000 Bytes, #entries:1000 EntrySize:184 PreEntries 0
  29. -* NOTICE *- 21:50:00.644 - 278181 - Allocated 184000 Bytes, #entries:1000 EntrySize:184 PreEntries 0
  30. -* NOTICE *- 21:50:00.771 - 403945 - ConfigFileProcessor::ProcessScript() - Started Processing Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  31. -* NOTICE *- 21:50:00.790 - 423463 - FormatCmdLine::GetNextLine() - Processing line number: 1
  32. -* NOTICE *- 21:50:00.790 - 423491 - FormatCmdLine::GetNextLine() - Processing line: #Cheetah system setup file
  33. -* NOTICE *- 21:50:00.790 - 423513 - FormatCmdLine::GetNextLine() - Processing line number: 2
  34. -* NOTICE *- 21:50:00.790 - 423530 - FormatCmdLine::GetNextLine() - Processing line: #Generated using Cheetah v5.6.3
  35. -* NOTICE *- 21:50:00.790 - 423549 - FormatCmdLine::GetNextLine() - Processing line number: 3
  36. -* NOTICE *- 21:50:00.790 - 423566 - FormatCmdLine::GetNextLine() - Processing line: #File Generation Date: 2016-11-27 16:20:50
  37. -* NOTICE *- 21:50:00.790 - 423584 - FormatCmdLine::GetNextLine() - Processing line number: 4
  38. -* NOTICE *- 21:50:00.790 - 423601 - FormatCmdLine::GetNextLine() - Processing line:
  39. -* NOTICE *- 21:50:00.790 - 423619 - FormatCmdLine::GetNextLine() - Processing line number: 5
  40. -* NOTICE *- 21:50:00.790 - 423636 - FormatCmdLine::GetNextLine() - Processing line: #Cheetah Setup
  41. -* NOTICE *- 21:50:00.790 - 423654 - FormatCmdLine::GetNextLine() - Processing line number: 6
  42. -* NOTICE *- 21:50:00.790 - 423671 - FormatCmdLine::GetNextLine() - Processing line: -SetDataDirectory "C:\CheetahData\"
  43. -* NOTICE *- 21:50:00.790 - 423694 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 6, Command Line: -SetDataDirectory "C:\CheetahData\", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  44. Log file successfully moved to C:\CheetahData\2016-11-28_21-50-00\CheetahLogFile.txt
  45. -* NOTICE *- 21:50:00.793 - 426014 - FormatCmdLine::GetNextLine() - Processing line number: 7
  46. -* NOTICE *- 21:50:00.793 - 426037 - FormatCmdLine::GetNextLine() - Processing line:
  47. -* NOTICE *- 21:50:00.793 - 426057 - FormatCmdLine::GetNextLine() - Processing line number: 8
  48. -* NOTICE *- 21:50:00.793 - 426108 - FormatCmdLine::GetNextLine() - Processing line:
  49. -* NOTICE *- 21:50:00.793 - 426134 - FormatCmdLine::GetNextLine() - Processing line number: 9
  50. -* NOTICE *- 21:50:00.793 - 426153 - FormatCmdLine::GetNextLine() - Processing line: #Log File setup
  51. -* NOTICE *- 21:50:00.793 - 426172 - FormatCmdLine::GetNextLine() - Processing line number: 10
  52. -* NOTICE *- 21:50:00.793 - 426191 - FormatCmdLine::GetNextLine() - Processing line: -SetLogFile "\"
  53. -* NOTICE *- 21:50:00.793 - 426213 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 10, Command Line: -SetLogFile "\", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  54. -* NOTICE *- 21:50:00.793 - 426249 - FormatCmdLine::GetNextLine() - Processing line number: 11
  55. -* NOTICE *- 21:50:00.793 - 426270 - FormatCmdLine::GetNextLine() - Processing line:
  56. -* NOTICE *- 21:50:00.793 - 426289 - FormatCmdLine::GetNextLine() - Processing line number: 12
  57. -* NOTICE *- 21:50:00.793 - 426307 - FormatCmdLine::GetNextLine() - Processing line:
  58. -* NOTICE *- 21:50:00.793 - 426327 - FormatCmdLine::GetNextLine() - Processing line number: 13
  59. -* NOTICE *- 21:50:00.793 - 426345 - FormatCmdLine::GetNextLine() - Processing line: #Hardware Subsystem Creation and Setup for: AcqSystem1
  60. -* NOTICE *- 21:50:00.793 - 426366 - FormatCmdLine::GetNextLine() - Processing line number: 14
  61. -* NOTICE *- 21:50:00.793 - 426387 - FormatCmdLine::GetNextLine() - Processing line: -CreateHardwareSubSystem "AcqSystem1" DigitalLynxSX "32000" "192.168.3.10" "26011" "192.168.3.100" "26090"
  62. -* NOTICE *- 21:50:00.793 - 426413 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 14, Command Line: -CreateHardwareSubSystem "AcqSystem1" DigitalLynxSX "32000" "192.168.3.10" "26011" "192.168.3.100" "26090", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  63. -* NOTICE *- 21:50:01.121 - 754058 - HardwareSubSysLynxSX::GetHardwareInformation() - The Lynx SX hardware returned a MAC address of 025378010000. Sub System Name: AcqSystem1
  64. -* NOTICE *- 21:50:01.421 - 1054480 - HardwareSubSysLynxSX::GetHardwareInformation() - The Lynx SX Motherboard ID is 3039. Sub System Name: AcqSystem1
  65. -* NOTICE *- 21:50:01.581 - 1214914 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 1: DLSXMB_R0_BIT-1.020000. Sub System Name: AcqSystem1
  66. -* NOTICE *- 21:50:01.582 - 1214967 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 2: DLSXMB_R0_SREC-1.020000. Sub System Name: AcqSystem1
  67. -* NOTICE *- 21:50:01.582 - 1214998 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 3: DLSXMB_R1_BIT-1.010000. Sub System Name: AcqSystem1
  68. -* NOTICE *- 21:50:01.582 - 1215028 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 4: DLSXMB_R1_SREC-1.010000. Sub System Name: AcqSystem1
  69. -* NOTICE *- 21:50:01.582 - 1215057 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 5: DLSXMB_R2_BIT-1.300000. Sub System Name: AcqSystem1
  70. -* NOTICE *- 21:50:01.582 - 1215086 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 6: DLSXMB_R2_SREC-1.300000. Sub System Name: AcqSystem1
  71. -* NOTICE *- 21:50:01.582 - 1215115 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 7: DLSX_IB_BIT-1.000000. Sub System Name: AcqSystem1
  72. -* NOTICE *- 21:50:01.582 - 1215144 - HardwareSubSysLynxSX::GetHardwareInformation() - Lynx SX Hardware Information 8: DLSX_DRS_BIT-2.000000. Sub System Name: AcqSystem1
  73. -* NOTICE *- 21:50:02.063 - 1695412 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 0 contains board type Input. Sub System Name: AcqSystem1
  74. -* NOTICE *- 21:50:02.203 - 1835666 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 0 32 ) about to be sent.
  75. -* NOTICE *- 21:50:02.203 - 1835773 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 1 33 ) about to be sent.
  76. -* NOTICE *- 21:50:02.203 - 1835902 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 2 34 ) about to be sent.
  77. -* NOTICE *- 21:50:02.204 - 1835985 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 3 35 ) about to be sent.
  78. -* NOTICE *- 21:50:02.204 - 1836059 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 4 36 ) about to be sent.
  79. -* NOTICE *- 21:50:02.204 - 1836131 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 5 37 ) about to be sent.
  80. -* NOTICE *- 21:50:02.204 - 1836205 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 6 0 ) about to be sent.
  81. -* NOTICE *- 21:50:02.204 - 1836275 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 7 31 ) about to be sent.
  82. -* NOTICE *- 21:50:02.204 - 1836344 - DRSController::SendDRSCommand() - DRS Command(b1 crs 0 0 ) about to be sent.
  83. -* NOTICE *- 21:50:02.204 - 1836414 - DRSController::SendDRSCommand() - DRS Command(b1 crs 1 0 ) about to be sent.
  84. -* NOTICE *- 21:50:02.204 - 1836484 - DRSController::SendDRSCommand() - DRS Command(b1 crs 2 0 ) about to be sent.
  85. -* NOTICE *- 21:50:02.204 - 1836554 - DRSController::SendDRSCommand() - DRS Command(b1 crs 3 0 ) about to be sent.
  86. -* NOTICE *- 21:50:02.204 - 1836625 - DRSController::SendDRSCommand() - DRS Command(b1 crs 4 0 ) about to be sent.
  87. -* NOTICE *- 21:50:02.204 - 1836695 - DRSController::SendDRSCommand() - DRS Command(b1 crs 5 0 ) about to be sent.
  88. -* NOTICE *- 21:50:02.204 - 1836767 - DRSController::SendDRSCommand() - DRS Command(b1 crs 6 0 ) about to be sent.
  89. -* NOTICE *- 21:50:02.204 - 1836839 - DRSController::SendDRSCommand() - DRS Command(b1 crs 7 0 ) about to be sent.
  90. -* NOTICE *- 21:50:02.204 - 1836912 - DRSController::SendDRSCommand() - DRS Command(b1 crs 8 0 ) about to be sent.
  91. -* NOTICE *- 21:50:02.205 - 1836988 - DRSController::SendDRSCommand() - DRS Command(b1 crs 9 0 ) about to be sent.
  92. -* NOTICE *- 21:50:02.205 - 1837064 - DRSController::SendDRSCommand() - DRS Command(b1 crs 10 0 ) about to be sent.
  93. -* NOTICE *- 21:50:02.205 - 1837136 - DRSController::SendDRSCommand() - DRS Command(b1 crs 11 0 ) about to be sent.
  94. -* NOTICE *- 21:50:02.205 - 1837206 - DRSController::SendDRSCommand() - DRS Command(b1 crs 12 0 ) about to be sent.
  95. -* NOTICE *- 21:50:02.205 - 1837278 - DRSController::SendDRSCommand() - DRS Command(b1 crs 13 0 ) about to be sent.
  96. -* NOTICE *- 21:50:02.205 - 1837347 - DRSController::SendDRSCommand() - DRS Command(b1 crs 14 0 ) about to be sent.
  97. -* NOTICE *- 21:50:02.205 - 1837416 - DRSController::SendDRSCommand() - DRS Command(b1 crs 15 0 ) about to be sent.
  98. -* NOTICE *- 21:50:02.205 - 1837484 - DRSController::SendDRSCommand() - DRS Command(b1 crs 16 0 ) about to be sent.
  99. -* NOTICE *- 21:50:02.205 - 1837553 - DRSController::SendDRSCommand() - DRS Command(b1 crs 17 0 ) about to be sent.
  100. -* NOTICE *- 21:50:02.205 - 1837622 - DRSController::SendDRSCommand() - DRS Command(b1 crs 18 0 ) about to be sent.
  101. -* NOTICE *- 21:50:02.205 - 1837690 - DRSController::SendDRSCommand() - DRS Command(b1 crs 19 0 ) about to be sent.
  102. -* NOTICE *- 21:50:02.205 - 1837759 - DRSController::SendDRSCommand() - DRS Command(b1 crs 20 0 ) about to be sent.
  103. -* NOTICE *- 21:50:02.205 - 1837827 - DRSController::SendDRSCommand() - DRS Command(b1 crs 21 0 ) about to be sent.
  104. -* NOTICE *- 21:50:02.205 - 1837896 - DRSController::SendDRSCommand() - DRS Command(b1 crs 22 0 ) about to be sent.
  105. -* NOTICE *- 21:50:02.206 - 1837968 - DRSController::SendDRSCommand() - DRS Command(b1 crs 23 0 ) about to be sent.
  106. -* NOTICE *- 21:50:02.206 - 1838039 - DRSController::SendDRSCommand() - DRS Command(b1 crs 24 0 ) about to be sent.
  107. -* NOTICE *- 21:50:02.206 - 1838108 - DRSController::SendDRSCommand() - DRS Command(b1 crs 25 0 ) about to be sent.
  108. -* NOTICE *- 21:50:02.206 - 1838176 - DRSController::SendDRSCommand() - DRS Command(b1 crs 26 0 ) about to be sent.
  109. -* NOTICE *- 21:50:02.206 - 1838244 - DRSController::SendDRSCommand() - DRS Command(b1 crs 27 0 ) about to be sent.
  110. -* NOTICE *- 21:50:02.206 - 1838319 - DRSController::SendDRSCommand() - DRS Command(b1 crs 28 0 ) about to be sent.
  111. -* NOTICE *- 21:50:02.206 - 1838390 - DRSController::SendDRSCommand() - DRS Command(b1 crs 29 0 ) about to be sent.
  112. -* NOTICE *- 21:50:02.206 - 1838460 - DRSController::SendDRSCommand() - DRS Command(b1 crs 30 0 ) about to be sent.
  113. -* NOTICE *- 21:50:02.206 - 1838528 - DRSController::SendDRSCommand() - DRS Command(b1 crs 31 0 ) about to be sent.
  114. -* NOTICE *- 21:50:02.206 - 1838624 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 1 contains board type DRS. Sub System Name: AcqSystem1
  115. -* NOTICE *- 21:50:08.667 - 8294050 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 2 contains board type Input. Sub System Name: AcqSystem1
  116. -* NOTICE *- 21:50:08.829 - 8454252 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 0 32 ) about to be sent.
  117. -* NOTICE *- 21:50:08.829 - 8454339 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 1 33 ) about to be sent.
  118. -* NOTICE *- 21:50:08.829 - 8454411 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 2 34 ) about to be sent.
  119. -* NOTICE *- 21:50:08.829 - 8454481 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 3 35 ) about to be sent.
  120. -* NOTICE *- 21:50:08.829 - 8454551 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 4 36 ) about to be sent.
  121. -* NOTICE *- 21:50:08.829 - 8454620 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 5 37 ) about to be sent.
  122. -* NOTICE *- 21:50:08.829 - 8454692 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 6 0 ) about to be sent.
  123. -* NOTICE *- 21:50:08.829 - 8454759 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 7 31 ) about to be sent.
  124. -* NOTICE *- 21:50:08.829 - 8454827 - DRSController::SendDRSCommand() - DRS Command(b3 crs 0 0 ) about to be sent.
  125. -* NOTICE *- 21:50:08.829 - 8454895 - DRSController::SendDRSCommand() - DRS Command(b3 crs 1 0 ) about to be sent.
  126. -* NOTICE *- 21:50:08.829 - 8454963 - DRSController::SendDRSCommand() - DRS Command(b3 crs 2 0 ) about to be sent.
  127. -* NOTICE *- 21:50:08.829 - 8455042 - DRSController::SendDRSCommand() - DRS Command(b3 crs 3 0 ) about to be sent.
  128. -* NOTICE *- 21:50:08.829 - 8455112 - DRSController::SendDRSCommand() - DRS Command(b3 crs 4 0 ) about to be sent.
  129. -* NOTICE *- 21:50:08.830 - 8455185 - DRSController::SendDRSCommand() - DRS Command(b3 crs 5 0 ) about to be sent.
  130. -* NOTICE *- 21:50:08.830 - 8455254 - DRSController::SendDRSCommand() - DRS Command(b3 crs 6 0 ) about to be sent.
  131. -* NOTICE *- 21:50:08.830 - 8455323 - DRSController::SendDRSCommand() - DRS Command(b3 crs 7 0 ) about to be sent.
  132. -* NOTICE *- 21:50:08.830 - 8455391 - DRSController::SendDRSCommand() - DRS Command(b3 crs 8 0 ) about to be sent.
  133. -* NOTICE *- 21:50:08.830 - 8455459 - DRSController::SendDRSCommand() - DRS Command(b3 crs 9 0 ) about to be sent.
  134. -* NOTICE *- 21:50:08.830 - 8455527 - DRSController::SendDRSCommand() - DRS Command(b3 crs 10 0 ) about to be sent.
  135. -* NOTICE *- 21:50:08.830 - 8455594 - DRSController::SendDRSCommand() - DRS Command(b3 crs 11 0 ) about to be sent.
  136. -* NOTICE *- 21:50:08.830 - 8455662 - DRSController::SendDRSCommand() - DRS Command(b3 crs 12 0 ) about to be sent.
  137. -* NOTICE *- 21:50:08.830 - 8455729 - DRSController::SendDRSCommand() - DRS Command(b3 crs 13 0 ) about to be sent.
  138. -* NOTICE *- 21:50:08.830 - 8455797 - DRSController::SendDRSCommand() - DRS Command(b3 crs 14 0 ) about to be sent.
  139. -* NOTICE *- 21:50:08.830 - 8455865 - DRSController::SendDRSCommand() - DRS Command(b3 crs 15 0 ) about to be sent.
  140. -* NOTICE *- 21:50:08.830 - 8455933 - DRSController::SendDRSCommand() - DRS Command(b3 crs 16 0 ) about to be sent.
  141. -* NOTICE *- 21:50:08.830 - 8456001 - DRSController::SendDRSCommand() - DRS Command(b3 crs 17 0 ) about to be sent.
  142. -* NOTICE *- 21:50:08.830 - 8456069 - DRSController::SendDRSCommand() - DRS Command(b3 crs 18 0 ) about to be sent.
  143. -* NOTICE *- 21:50:08.830 - 8456137 - DRSController::SendDRSCommand() - DRS Command(b3 crs 19 0 ) about to be sent.
  144. -* NOTICE *- 21:50:08.831 - 8456260 - DRSController::SendDRSCommand() - DRS Command(b3 crs 20 0 ) about to be sent.
  145. -* NOTICE *- 21:50:08.831 - 8456334 - DRSController::SendDRSCommand() - DRS Command(b3 crs 21 0 ) about to be sent.
  146. -* NOTICE *- 21:50:08.831 - 8456403 - DRSController::SendDRSCommand() - DRS Command(b3 crs 22 0 ) about to be sent.
  147. -* NOTICE *- 21:50:08.831 - 8456470 - DRSController::SendDRSCommand() - DRS Command(b3 crs 23 0 ) about to be sent.
  148. -* NOTICE *- 21:50:08.831 - 8456538 - DRSController::SendDRSCommand() - DRS Command(b3 crs 24 0 ) about to be sent.
  149. -* NOTICE *- 21:50:08.831 - 8456606 - DRSController::SendDRSCommand() - DRS Command(b3 crs 25 0 ) about to be sent.
  150. -* NOTICE *- 21:50:08.831 - 8456674 - DRSController::SendDRSCommand() - DRS Command(b3 crs 26 0 ) about to be sent.
  151. -* NOTICE *- 21:50:08.831 - 8456742 - DRSController::SendDRSCommand() - DRS Command(b3 crs 27 0 ) about to be sent.
  152. -* NOTICE *- 21:50:08.831 - 8456809 - DRSController::SendDRSCommand() - DRS Command(b3 crs 28 0 ) about to be sent.
  153. -* NOTICE *- 21:50:08.831 - 8456878 - DRSController::SendDRSCommand() - DRS Command(b3 crs 29 0 ) about to be sent.
  154. -* NOTICE *- 21:50:08.831 - 8456946 - DRSController::SendDRSCommand() - DRS Command(b3 crs 30 0 ) about to be sent.
  155. -* NOTICE *- 21:50:08.831 - 8457013 - DRSController::SendDRSCommand() - DRS Command(b3 crs 31 0 ) about to be sent.
  156. -* NOTICE *- 21:50:08.831 - 8457092 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 3 contains board type DRS. Sub System Name: AcqSystem1
  157. -* NOTICE *- 21:50:15.283 - 14902660 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 4 contains board type Input. Sub System Name: AcqSystem1
  158. -* NOTICE *- 21:50:15.443 - 15062841 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 0 32 ) about to be sent.
  159. -* NOTICE *- 21:50:15.443 - 15062933 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 1 33 ) about to be sent.
  160. -* NOTICE *- 21:50:15.443 - 15063011 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 2 34 ) about to be sent.
  161. -* NOTICE *- 21:50:15.443 - 15063087 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 3 35 ) about to be sent.
  162. -* NOTICE *- 21:50:15.443 - 15063162 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 4 36 ) about to be sent.
  163. -* NOTICE *- 21:50:15.443 - 15063236 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 5 37 ) about to be sent.
  164. -* NOTICE *- 21:50:15.443 - 15063314 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 6 0 ) about to be sent.
  165. -* NOTICE *- 21:50:15.444 - 15063392 - DRSController::SendDRSCommand() - DRS Command(b5 rbs 7 31 ) about to be sent.
  166. -* NOTICE *- 21:50:15.444 - 15063469 - DRSController::SendDRSCommand() - DRS Command(b5 crs 0 0 ) about to be sent.
  167. -* NOTICE *- 21:50:15.444 - 15063546 - DRSController::SendDRSCommand() - DRS Command(b5 crs 1 0 ) about to be sent.
  168. -* NOTICE *- 21:50:15.444 - 15063621 - DRSController::SendDRSCommand() - DRS Command(b5 crs 2 0 ) about to be sent.
  169. -* NOTICE *- 21:50:15.444 - 15063695 - DRSController::SendDRSCommand() - DRS Command(b5 crs 3 0 ) about to be sent.
  170. -* NOTICE *- 21:50:15.444 - 15063768 - DRSController::SendDRSCommand() - DRS Command(b5 crs 4 0 ) about to be sent.
  171. -* NOTICE *- 21:50:15.444 - 15063843 - DRSController::SendDRSCommand() - DRS Command(b5 crs 5 0 ) about to be sent.
  172. -* NOTICE *- 21:50:15.444 - 15063917 - DRSController::SendDRSCommand() - DRS Command(b5 crs 6 0 ) about to be sent.
  173. -* NOTICE *- 21:50:15.444 - 15063990 - DRSController::SendDRSCommand() - DRS Command(b5 crs 7 0 ) about to be sent.
  174. -* NOTICE *- 21:50:15.444 - 15064065 - DRSController::SendDRSCommand() - DRS Command(b5 crs 8 0 ) about to be sent.
  175. -* NOTICE *- 21:50:15.444 - 15064139 - DRSController::SendDRSCommand() - DRS Command(b5 crs 9 0 ) about to be sent.
  176. -* NOTICE *- 21:50:15.444 - 15064214 - DRSController::SendDRSCommand() - DRS Command(b5 crs 10 0 ) about to be sent.
  177. -* NOTICE *- 21:50:15.444 - 15064293 - DRSController::SendDRSCommand() - DRS Command(b5 crs 11 0 ) about to be sent.
  178. -* NOTICE *- 21:50:15.445 - 15064374 - DRSController::SendDRSCommand() - DRS Command(b5 crs 12 0 ) about to be sent.
  179. -* NOTICE *- 21:50:15.445 - 15064451 - DRSController::SendDRSCommand() - DRS Command(b5 crs 13 0 ) about to be sent.
  180. -* NOTICE *- 21:50:15.445 - 15064526 - DRSController::SendDRSCommand() - DRS Command(b5 crs 14 0 ) about to be sent.
  181. -* NOTICE *- 21:50:15.445 - 15064601 - DRSController::SendDRSCommand() - DRS Command(b5 crs 15 0 ) about to be sent.
  182. -* NOTICE *- 21:50:15.445 - 15064675 - DRSController::SendDRSCommand() - DRS Command(b5 crs 16 0 ) about to be sent.
  183. -* NOTICE *- 21:50:15.445 - 15064749 - DRSController::SendDRSCommand() - DRS Command(b5 crs 17 0 ) about to be sent.
  184. -* NOTICE *- 21:50:15.445 - 15064823 - DRSController::SendDRSCommand() - DRS Command(b5 crs 18 0 ) about to be sent.
  185. -* NOTICE *- 21:50:15.445 - 15064897 - DRSController::SendDRSCommand() - DRS Command(b5 crs 19 0 ) about to be sent.
  186. -* NOTICE *- 21:50:15.445 - 15064971 - DRSController::SendDRSCommand() - DRS Command(b5 crs 20 0 ) about to be sent.
  187. -* NOTICE *- 21:50:15.445 - 15065045 - DRSController::SendDRSCommand() - DRS Command(b5 crs 21 0 ) about to be sent.
  188. -* NOTICE *- 21:50:15.445 - 15065118 - DRSController::SendDRSCommand() - DRS Command(b5 crs 22 0 ) about to be sent.
  189. -* NOTICE *- 21:50:15.445 - 15065192 - DRSController::SendDRSCommand() - DRS Command(b5 crs 23 0 ) about to be sent.
  190. -* NOTICE *- 21:50:15.445 - 15065266 - DRSController::SendDRSCommand() - DRS Command(b5 crs 24 0 ) about to be sent.
  191. -* NOTICE *- 21:50:15.445 - 15065341 - DRSController::SendDRSCommand() - DRS Command(b5 crs 25 0 ) about to be sent.
  192. -* NOTICE *- 21:50:15.446 - 15065421 - DRSController::SendDRSCommand() - DRS Command(b5 crs 26 0 ) about to be sent.
  193. -* NOTICE *- 21:50:15.446 - 15065495 - DRSController::SendDRSCommand() - DRS Command(b5 crs 27 0 ) about to be sent.
  194. -* NOTICE *- 21:50:15.446 - 15065569 - DRSController::SendDRSCommand() - DRS Command(b5 crs 28 0 ) about to be sent.
  195. -* NOTICE *- 21:50:15.446 - 15065643 - DRSController::SendDRSCommand() - DRS Command(b5 crs 29 0 ) about to be sent.
  196. -* NOTICE *- 21:50:15.446 - 15065717 - DRSController::SendDRSCommand() - DRS Command(b5 crs 30 0 ) about to be sent.
  197. -* NOTICE *- 21:50:15.446 - 15065791 - DRSController::SendDRSCommand() - DRS Command(b5 crs 31 0 ) about to be sent.
  198. -* NOTICE *- 21:50:15.446 - 15065878 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 5 contains board type DRS. Sub System Name: AcqSystem1
  199. -* NOTICE *- 21:50:21.958 - 21571302 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 6 contains board type Input. Sub System Name: AcqSystem1
  200. -* NOTICE *- 21:50:22.118 - 21731490 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 0 32 ) about to be sent.
  201. -* NOTICE *- 21:50:22.119 - 21731582 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 1 33 ) about to be sent.
  202. -* NOTICE *- 21:50:22.119 - 21731656 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 2 34 ) about to be sent.
  203. -* NOTICE *- 21:50:22.119 - 21731726 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 3 35 ) about to be sent.
  204. -* NOTICE *- 21:50:22.119 - 21731796 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 4 36 ) about to be sent.
  205. -* NOTICE *- 21:50:22.119 - 21731864 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 5 37 ) about to be sent.
  206. -* NOTICE *- 21:50:22.119 - 21731936 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 6 0 ) about to be sent.
  207. -* NOTICE *- 21:50:22.119 - 21732004 - DRSController::SendDRSCommand() - DRS Command(b7 rbs 7 31 ) about to be sent.
  208. -* NOTICE *- 21:50:22.119 - 21732074 - DRSController::SendDRSCommand() - DRS Command(b7 crs 0 0 ) about to be sent.
  209. -* NOTICE *- 21:50:22.119 - 21732142 - DRSController::SendDRSCommand() - DRS Command(b7 crs 1 0 ) about to be sent.
  210. -* NOTICE *- 21:50:22.119 - 21732210 - DRSController::SendDRSCommand() - DRS Command(b7 crs 2 0 ) about to be sent.
  211. -* NOTICE *- 21:50:22.119 - 21732284 - DRSController::SendDRSCommand() - DRS Command(b7 crs 3 0 ) about to be sent.
  212. -* NOTICE *- 21:50:22.119 - 21732356 - DRSController::SendDRSCommand() - DRS Command(b7 crs 4 0 ) about to be sent.
  213. -* NOTICE *- 21:50:22.119 - 21732424 - DRSController::SendDRSCommand() - DRS Command(b7 crs 5 0 ) about to be sent.
  214. -* NOTICE *- 21:50:22.119 - 21732492 - DRSController::SendDRSCommand() - DRS Command(b7 crs 6 0 ) about to be sent.
  215. -* NOTICE *- 21:50:22.119 - 21732562 - DRSController::SendDRSCommand() - DRS Command(b7 crs 7 0 ) about to be sent.
  216. -* NOTICE *- 21:50:22.120 - 21732634 - DRSController::SendDRSCommand() - DRS Command(b7 crs 8 0 ) about to be sent.
  217. -* NOTICE *- 21:50:22.120 - 21732702 - DRSController::SendDRSCommand() - DRS Command(b7 crs 9 0 ) about to be sent.
  218. -* NOTICE *- 21:50:22.120 - 21732772 - DRSController::SendDRSCommand() - DRS Command(b7 crs 10 0 ) about to be sent.
  219. -* NOTICE *- 21:50:22.120 - 21732840 - DRSController::SendDRSCommand() - DRS Command(b7 crs 11 0 ) about to be sent.
  220. -* NOTICE *- 21:50:22.120 - 21732908 - DRSController::SendDRSCommand() - DRS Command(b7 crs 12 0 ) about to be sent.
  221. -* NOTICE *- 21:50:22.120 - 21732978 - DRSController::SendDRSCommand() - DRS Command(b7 crs 13 0 ) about to be sent.
  222. -* NOTICE *- 21:50:22.120 - 21733046 - DRSController::SendDRSCommand() - DRS Command(b7 crs 14 0 ) about to be sent.
  223. -* NOTICE *- 21:50:22.120 - 21733114 - DRSController::SendDRSCommand() - DRS Command(b7 crs 15 0 ) about to be sent.
  224. -* NOTICE *- 21:50:22.120 - 21733182 - DRSController::SendDRSCommand() - DRS Command(b7 crs 16 0 ) about to be sent.
  225. -* NOTICE *- 21:50:22.120 - 21733250 - DRSController::SendDRSCommand() - DRS Command(b7 crs 17 0 ) about to be sent.
  226. -* NOTICE *- 21:50:22.120 - 21733320 - DRSController::SendDRSCommand() - DRS Command(b7 crs 18 0 ) about to be sent.
  227. -* NOTICE *- 21:50:22.120 - 21733388 - DRSController::SendDRSCommand() - DRS Command(b7 crs 19 0 ) about to be sent.
  228. -* NOTICE *- 21:50:22.120 - 21733456 - DRSController::SendDRSCommand() - DRS Command(b7 crs 20 0 ) about to be sent.
  229. -* NOTICE *- 21:50:22.120 - 21733524 - DRSController::SendDRSCommand() - DRS Command(b7 crs 21 0 ) about to be sent.
  230. -* NOTICE *- 21:50:22.121 - 21733596 - DRSController::SendDRSCommand() - DRS Command(b7 crs 22 0 ) about to be sent.
  231. -* NOTICE *- 21:50:22.121 - 21733666 - DRSController::SendDRSCommand() - DRS Command(b7 crs 23 0 ) about to be sent.
  232. -* NOTICE *- 21:50:22.121 - 21733734 - DRSController::SendDRSCommand() - DRS Command(b7 crs 24 0 ) about to be sent.
  233. -* NOTICE *- 21:50:22.121 - 21733802 - DRSController::SendDRSCommand() - DRS Command(b7 crs 25 0 ) about to be sent.
  234. -* NOTICE *- 21:50:22.121 - 21733870 - DRSController::SendDRSCommand() - DRS Command(b7 crs 26 0 ) about to be sent.
  235. -* NOTICE *- 21:50:22.121 - 21733938 - DRSController::SendDRSCommand() - DRS Command(b7 crs 27 0 ) about to be sent.
  236. -* NOTICE *- 21:50:22.121 - 21734006 - DRSController::SendDRSCommand() - DRS Command(b7 crs 28 0 ) about to be sent.
  237. -* NOTICE *- 21:50:22.121 - 21734074 - DRSController::SendDRSCommand() - DRS Command(b7 crs 29 0 ) about to be sent.
  238. -* NOTICE *- 21:50:22.121 - 21734142 - DRSController::SendDRSCommand() - DRS Command(b7 crs 30 0 ) about to be sent.
  239. -* NOTICE *- 21:50:22.121 - 21734210 - DRSController::SendDRSCommand() - DRS Command(b7 crs 31 0 ) about to be sent.
  240. -* NOTICE *- 21:50:22.121 - 21734304 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 7 contains board type DRS. Sub System Name: AcqSystem1
  241. -* NOTICE *- 21:50:28.563 - 28169830 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 8 contains board type Empty. Sub System Name: AcqSystem1
  242. -* NOTICE *- 21:50:28.724 - 28330008 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 9 contains board type Empty. Sub System Name: AcqSystem1
  243. -* NOTICE *- 21:50:28.864 - 28470224 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 10 contains board type Empty. Sub System Name: AcqSystem1
  244. -* NOTICE *- 21:50:29.004 - 28610708 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 11 contains board type Empty. Sub System Name: AcqSystem1
  245. -* NOTICE *- 21:50:29.164 - 28770674 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 12 contains board type Empty. Sub System Name: AcqSystem1
  246. -* NOTICE *- 21:50:29.305 - 28910892 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 13 contains board type Empty. Sub System Name: AcqSystem1
  247. -* NOTICE *- 21:50:29.465 - 29071136 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 14 contains board type Empty. Sub System Name: AcqSystem1
  248. -* NOTICE *- 21:50:29.605 - 29211354 - HardwareSubSysLynxSX::GetBoardInformation() - Slot # 15 contains board type Empty. Sub System Name: AcqSystem1
  249. -* NOTICE *- 21:50:29.605 - 29211412 - HardwareSubSys::CreateDmaBuffers() - Notice, DMA buffer allocation completed. Total buffer size in bytes: 4259840, Buffer Count: 65. Sub System Name: AcqSystem1
  250. -* NOTICE *- 21:50:29.613 - 29219220 - Allocated 16640000 Bytes, #entries:1000 EntrySize:16640 PreEntries 0
  251. -* NOTICE *- 21:50:29.957 - 29562156 - DRSController::SendDRSCommand() - DRS Command(b1 hsp 0 ) about to be sent.
  252. -* NOTICE *- 21:50:29.957 - 29562240 - DRSController::SendDRSCommand() - DRS Command(b3 hsp 0 ) about to be sent.
  253. -* NOTICE *- 21:50:29.957 - 29562298 - DRSController::SendDRSCommand() - DRS Command(b5 hsp 0 ) about to be sent.
  254. -* NOTICE *- 21:50:29.957 - 29562352 - DRSController::SendDRSCommand() - DRS Command(b7 hsp 0 ) about to be sent.
  255. -* NOTICE *- 21:50:30.739 - 30343008 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 0, Direction: Input.
  256. -* NOTICE *- 21:50:30.899 - 30503232 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 1, Direction: Input.
  257. -* NOTICE *- 21:50:31.059 - 30663462 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 2, Direction: Input.
  258. -* NOTICE *- 21:50:31.199 - 30803678 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 3, Direction: Input.
  259. -* NOTICE *- 21:50:31.640 - 31244696 - FormatCmdLine::GetNextLine() - Processing line number: 15
  260. -* NOTICE *- 21:50:31.640 - 31244736 - FormatCmdLine::GetNextLine() - Processing line: -SetDmaBuffers "AcqSystem1" 64 2
  261. -* NOTICE *- 21:50:31.640 - 31244764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 15, Command Line: -SetDmaBuffers "AcqSystem1" 64 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  262. -* NOTICE *- 21:50:31.640 - 31244842 - HardwareSubSys::CreateDmaBuffers() - Notice, DMA buffer allocation completed. Total buffer size in bytes: 4259840, Buffer Count: 65. Sub System Name: AcqSystem1
  263. -* NOTICE *- 21:50:31.641 - 31244942 - FormatCmdLine::GetNextLine() - Processing line number: 16
  264. -* NOTICE *- 21:50:31.641 - 31244968 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition "Hardware" 0 332
  265. -* NOTICE *- 21:50:31.641 - 31244990 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 16, Command Line: -SetDialogPosition "Hardware" 0 332, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  266. -* NOTICE *- 21:50:31.641 - 31245254 - FormatCmdLine::GetNextLine() - Processing line number: 17
  267. -* NOTICE *- 21:50:31.641 - 31245282 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible "Hardware" False
  268. -* NOTICE *- 21:50:31.641 - 31245306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 17, Command Line: -SetDialogVisible "Hardware" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  269. -* NOTICE *- 21:50:31.641 - 31245414 - FormatCmdLine::GetNextLine() - Processing line number: 18
  270. -* NOTICE *- 21:50:31.641 - 31245444 - FormatCmdLine::GetNextLine() - Processing line:
  271. -* NOTICE *- 21:50:31.641 - 31245464 - FormatCmdLine::GetNextLine() - Processing line number: 19
  272. -* NOTICE *- 21:50:31.641 - 31245484 - FormatCmdLine::GetNextLine() - Processing line:
  273. -* NOTICE *- 21:50:31.641 - 31245502 - FormatCmdLine::GetNextLine() - Processing line number: 20
  274. -* NOTICE *- 21:50:31.641 - 31245520 - FormatCmdLine::GetNextLine() - Processing line:
  275. -* NOTICE *- 21:50:31.641 - 31245538 - FormatCmdLine::GetNextLine() - Processing line number: 21
  276. -* NOTICE *- 21:50:31.641 - 31245558 - FormatCmdLine::GetNextLine() - Processing line:
  277. -* NOTICE *- 21:50:31.641 - 31245576 - FormatCmdLine::GetNextLine() - Processing line number: 22
  278. -* NOTICE *- 21:50:31.641 - 31245596 - FormatCmdLine::GetNextLine() - Processing line: # Device Setup for VT1 (Hauppauge WinTV 885 Video Capture)
  279. -* NOTICE *- 21:50:31.641 - 31245616 - FormatCmdLine::GetNextLine() - Processing line number: 23
  280. -* NOTICE *- 21:50:31.641 - 31245636 - FormatCmdLine::GetNextLine() - Processing line: -CreateVideoTracker "VT1" 4&183fafb2&0&0038
  281. -* NOTICE *- 21:50:31.641 - 31245658 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 23, Command Line: -CreateVideoTracker "VT1" 4&183fafb2&0&0038, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  282. -* NOTICE *- 21:50:31.641 - 31245734 - VideoCaptureDeviceDirectShow::BuildPreviewStream() - VT1 does not have the capture graph initialized. Canot build preview stream.
  283. -* NOTICE *- 21:50:31.663 - 31267234 - VideoCaptureDeviceDirectShow::CreateCaptureGraph() - VT1 successfully created the Capture Graph.
  284. -* NOTICE *- 21:50:31.717 - 31321064 - VideoCaptureDeviceDirectShow::CreateCaptureDevice() - VT1 successfully added (Hauppauge WinTV 885 Video Capture) to the Graph
  285. -* NOTICE *- 21:50:32.580 - 32184198 - VideoCaptureDeviceDirectShow::BuildFrameGrabberStream() - VT1 successfully built the frame grabber stream.
  286. -* NOTICE *- 21:50:32.604 - 32208700 - VideoCaptureDeviceDirectShow::BuildPreviewStream() - VT1 (Hauppauge WinTV 885 Video Capture) preview stream successfully built.
  287. -* NOTICE *- 21:50:32.617 - 32221308 - VideoCaptureDeviceDirectShow::SetupRecordingCompressor - VT1 the compressor (Hauppauge WinTV 885 MPEG Encoder) was successfully created.
  288. -* NOTICE *- 21:50:32.618 - 32222308 - VideoCaptureDeviceDirectShow::SetVideoSetting - VT1 (Hauppauge WinTV 885 Video Capture) does not support Color Enable control.
  289. -* NOTICE *- 21:50:32.618 - 32222340 - VT1 was successfully initialized to the device: Hauppauge WinTV 885 Video Capture at hardware ID: 4&183fafb2&0&0038
  290. -* NOTICE *- 21:50:32.623 - 32227262 - Allocated 10368160 Bytes, #entries:10 EntrySize:1036816 PreEntries 0
  291. -* NOTICE *- 21:50:32.624 - 32228194 - FormatCmdLine::GetNextLine() - Processing line number: 24
  292. -* NOTICE *- 21:50:32.624 - 32228232 - FormatCmdLine::GetNextLine() - Processing line: -SetVideoInput "VT1" SVideo
  293. -* NOTICE *- 21:50:32.624 - 32228258 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 24, Command Line: -SetVideoInput "VT1" SVideo, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  294. -* NOTICE *- 21:50:32.869 - 32472440 - FormatCmdLine::GetNextLine() - Processing line number: 25
  295. -* NOTICE *- 21:50:32.869 - 32472486 - FormatCmdLine::GetNextLine() - Processing line: -SetAnalogVideoFormat "VT1" PAL
  296. -* NOTICE *- 21:50:32.869 - 32472516 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 25, Command Line: -SetAnalogVideoFormat "VT1" PAL, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  297. -* NOTICE *- 21:50:33.166 - 32769674 - Allocated 12441760 Bytes, #entries:10 EntrySize:1244176 PreEntries 0
  298. -* NOTICE *- 21:50:33.169 - 32772880 - VideoCaptureDeviceDirectShow::BuildFrameGrabberStream() - VT1 successfully built the frame grabber stream.
  299. -* NOTICE *- 21:50:33.188 - 32791296 - VideoCaptureDeviceDirectShow::BuildPreviewStream() - VT1 (Hauppauge WinTV 885 Video Capture) preview stream successfully built.
  300. -* NOTICE *- 21:50:33.188 - 32791358 - FormatCmdLine::GetNextLine() - Processing line number: 26
  301. -* NOTICE *- 21:50:33.188 - 32791380 - FormatCmdLine::GetNextLine() - Processing line: -SetVideoResolution "VT1" 720 576
  302. -* NOTICE *- 21:50:33.188 - 32791404 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 26, Command Line: -SetVideoResolution "VT1" 720 576, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  303. -* NOTICE *- 21:50:33.193 - 32796422 - Allocated 12441760 Bytes, #entries:10 EntrySize:1244176 PreEntries 0
  304. -* NOTICE *- 21:50:33.196 - 32799576 - VideoCaptureDeviceDirectShow::BuildFrameGrabberStream() - VT1 successfully built the frame grabber stream.
  305. -* NOTICE *- 21:50:33.209 - 32812192 - VideoCaptureDeviceDirectShow::BuildPreviewStream() - VT1 (Hauppauge WinTV 885 Video Capture) preview stream successfully built.
  306. -* NOTICE *- 21:50:33.209 - 32812228 - VT1 successfully change the resolution to 720 x 576
  307. -* NOTICE *- 21:50:33.209 - 32812254 - FormatCmdLine::GetNextLine() - Processing line number: 27
  308. -* NOTICE *- 21:50:33.209 - 32812274 - FormatCmdLine::GetNextLine() - Processing line: -SetVideoFileOutputEnabled "VT1" false
  309. -* NOTICE *- 21:50:33.209 - 32812296 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 27, Command Line: -SetVideoFileOutputEnabled "VT1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  310. -* NOTICE *- 21:50:33.209 - 32812348 - FormatCmdLine::GetNextLine() - Processing line number: 28
  311. -* NOTICE *- 21:50:33.209 - 32812368 - FormatCmdLine::GetNextLine() - Processing line: -SetBrightness "VT1" 128
  312. -* NOTICE *- 21:50:33.209 - 32812390 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 28, Command Line: -SetBrightness "VT1" 128, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  313. -* NOTICE *- 21:50:33.209 - 32812580 - FormatCmdLine::GetNextLine() - Processing line number: 29
  314. -* NOTICE *- 21:50:33.209 - 32812606 - FormatCmdLine::GetNextLine() - Processing line: -SetSaturation "VT1" 128
  315. -* NOTICE *- 21:50:33.209 - 32812628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 29, Command Line: -SetSaturation "VT1" 128, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  316. -* NOTICE *- 21:50:33.209 - 32812828 - FormatCmdLine::GetNextLine() - Processing line number: 30
  317. -* NOTICE *- 21:50:33.209 - 32812868 - FormatCmdLine::GetNextLine() - Processing line: -SetHue "VT1" 128
  318. -* NOTICE *- 21:50:33.209 - 32812896 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 30, Command Line: -SetHue "VT1" 128, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  319. -* NOTICE *- 21:50:33.210 - 32813060 - FormatCmdLine::GetNextLine() - Processing line number: 31
  320. -* NOTICE *- 21:50:33.210 - 32813084 - FormatCmdLine::GetNextLine() - Processing line: -SetContrast "VT1" 128
  321. -* NOTICE *- 21:50:33.210 - 32813108 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 31, Command Line: -SetContrast "VT1" 128, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  322. -* NOTICE *- 21:50:33.210 - 32813252 - FormatCmdLine::GetNextLine() - Processing line number: 32
  323. -* NOTICE *- 21:50:33.210 - 32813274 - FormatCmdLine::GetNextLine() - Processing line: -SetSharpness "VT1" 0
  324. -* NOTICE *- 21:50:33.210 - 32813296 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 32, Command Line: -SetSharpness "VT1" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  325. -* NOTICE *- 21:50:33.210 - 32813504 - FormatCmdLine::GetNextLine() - Processing line number: 33
  326. -* NOTICE *- 21:50:33.210 - 32813550 - FormatCmdLine::GetNextLine() - Processing line: -SetGamma "VT1" -1
  327. -* NOTICE *- 21:50:33.210 - 32813576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 33, Command Line: -SetGamma "VT1" -1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  328. -* NOTICE *- 21:50:33.210 - 32813626 - FormatCmdLine::GetNextLine() - Processing line number: 34
  329. -* NOTICE *- 21:50:33.210 - 32813648 - FormatCmdLine::GetNextLine() - Processing line: -SetWhiteBalance "VT1" -1
  330. -* NOTICE *- 21:50:33.210 - 32813670 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 34, Command Line: -SetWhiteBalance "VT1" -1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  331. -* NOTICE *- 21:50:33.210 - 32813712 - FormatCmdLine::GetNextLine() - Processing line number: 35
  332. -* NOTICE *- 21:50:33.210 - 32813732 - FormatCmdLine::GetNextLine() - Processing line: -SetBacklightCompensation "VT1" -1
  333. -* NOTICE *- 21:50:33.210 - 32813754 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 35, Command Line: -SetBacklightCompensation "VT1" -1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  334. -* NOTICE *- 21:50:33.210 - 32813794 - FormatCmdLine::GetNextLine() - Processing line number: 36
  335. -* NOTICE *- 21:50:33.210 - 32813814 - FormatCmdLine::GetNextLine() - Processing line: -SetVideoGain "VT1" -1
  336. -* NOTICE *- 21:50:33.210 - 32813836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 36, Command Line: -SetVideoGain "VT1" -1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  337. -* NOTICE *- 21:50:33.210 - 32813878 - FormatCmdLine::GetNextLine() - Processing line number: 37
  338. -* NOTICE *- 21:50:33.210 - 32813900 - FormatCmdLine::GetNextLine() - Processing line:
  339. -* NOTICE *- 21:50:33.211 - 32813922 - FormatCmdLine::GetNextLine() - Processing line number: 38
  340. -* NOTICE *- 21:50:33.211 - 32813942 - FormatCmdLine::GetNextLine() - Processing line:
  341. -* NOTICE *- 21:50:33.211 - 32813962 - FormatCmdLine::GetNextLine() - Processing line number: 39
  342. -* NOTICE *- 21:50:33.211 - 32813980 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: Events
  343. -* NOTICE *- 21:50:33.211 - 32814000 - FormatCmdLine::GetNextLine() - Processing line number: 40
  344. -* NOTICE *- 21:50:33.211 - 32814018 - FormatCmdLine::GetNextLine() - Processing line: -SetDataFile Events "Events.nev"
  345. -* NOTICE *- 21:50:33.211 - 32814040 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 40, Command Line: -SetDataFile Events "Events.nev", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  346. -* NOTICE *- 21:50:33.211 - 32814098 - FormatCmdLine::GetNextLine() - Processing line number: 41
  347. -* NOTICE *- 21:50:33.211 - 32814120 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled Events False
  348. -* NOTICE *- 21:50:33.211 - 32814142 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 41, Command Line: -SetNetComDataBufferingEnabled Events False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  349. -* NOTICE *- 21:50:33.211 - 32814190 - FormatCmdLine::GetNextLine() - Processing line number: 42
  350. -* NOTICE *- 21:50:33.211 - 32814212 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize Events 3000
  351. -* NOTICE *- 21:50:33.211 - 32814234 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 42, Command Line: -SetNetComDataBufferSize Events 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  352. -* NOTICE *- 21:50:33.211 - 32814280 - FormatCmdLine::GetNextLine() - Processing line number: 43
  353. -* NOTICE *- 21:50:33.211 - 32814300 - FormatCmdLine::GetNextLine() - Processing line:
  354. -* NOTICE *- 21:50:33.211 - 32814322 - FormatCmdLine::GetNextLine() - Processing line number: 44
  355. -* NOTICE *- 21:50:33.211 - 32814342 - FormatCmdLine::GetNextLine() - Processing line:
  356. -* NOTICE *- 21:50:33.211 - 32814362 - FormatCmdLine::GetNextLine() - Processing line number: 45
  357. -* NOTICE *- 21:50:33.211 - 32814380 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT1"
  358. -* NOTICE *- 21:50:33.211 - 32814402 - FormatCmdLine::GetNextLine() - Processing line number: 46
  359. -* NOTICE *- 21:50:33.211 - 32814420 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT1" "AcqSystem1" 4
  360. -* NOTICE *- 21:50:33.211 - 32814442 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 46, Command Line: -CreateSpikeAcqEnt "TT1" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  361. -* NOTICE *- 21:50:33.211 - 32814832 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE TT1. Channel Count: 4
  362. -* NOTICE *- 21:50:33.213 - 32816330 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT1
  363. -* NOTICE *- 21:50:33.213 - 32816382 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT1
  364. -* NOTICE *- 21:50:33.213 - 32816422 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT1
  365. -* NOTICE *- 21:50:33.213 - 32816462 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT1
  366. -* NOTICE *- 21:50:33.213 - 32816492 - FormatCmdLine::GetNextLine() - Processing line number: 47
  367. -* NOTICE *- 21:50:33.213 - 32816512 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT1" True
  368. -* NOTICE *- 21:50:33.213 - 32816536 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 47, Command Line: -SetAcqEntProcessingEnabled "TT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  369. -* NOTICE *- 21:50:33.213 - 32816576 - FormatCmdLine::GetNextLine() - Processing line number: 48
  370. -* NOTICE *- 21:50:33.213 - 32816596 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT1" 40 41 42 43
  371. -* NOTICE *- 21:50:33.213 - 32816618 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 48, Command Line: -SetChannelNumber "TT1" 40 41 42 43, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  372. -* NOTICE *- 21:50:33.213 - 32816702 - FormatCmdLine::GetNextLine() - Processing line number: 49
  373. -* NOTICE *- 21:50:33.213 - 32816726 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT1" 8
  374. -* NOTICE *- 21:50:33.213 - 32816750 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 49, Command Line: -SetAcqEntReference "TT1" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  375. -* NOTICE *- 21:50:33.213 - 32816842 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 0 33 ) about to be sent.
  376. -* NOTICE *- 21:50:33.214 - 32816946 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 1 32 ) about to be sent.
  377. -* NOTICE *- 21:50:33.214 - 32817014 - DRSController::SendDRSCommand() - DRS Command(b1 crs 0 1 ) about to be sent.
  378. -* NOTICE *- 21:50:33.214 - 32817074 - DRSController::SendDRSCommand() - DRS Command(b1 crs 1 1 ) about to be sent.
  379. -* NOTICE *- 21:50:33.214 - 32817134 - DRSController::SendDRSCommand() - DRS Command(b1 crs 2 1 ) about to be sent.
  380. -* NOTICE *- 21:50:33.214 - 32817194 - DRSController::SendDRSCommand() - DRS Command(b1 crs 3 1 ) about to be sent.
  381. -* NOTICE *- 21:50:33.214 - 32817254 - DRSController::SendDRSCommand() - DRS Command(b1 crs 4 1 ) about to be sent.
  382. -* NOTICE *- 21:50:33.214 - 32817314 - DRSController::SendDRSCommand() - DRS Command(b1 crs 5 1 ) about to be sent.
  383. -* NOTICE *- 21:50:33.214 - 32817374 - DRSController::SendDRSCommand() - DRS Command(b1 crs 6 1 ) about to be sent.
  384. -* NOTICE *- 21:50:33.214 - 32817438 - DRSController::SendDRSCommand() - DRS Command(b1 crs 7 1 ) about to be sent.
  385. -* NOTICE *- 21:50:33.214 - 32817502 - DRSController::SendDRSCommand() - DRS Command(b1 crs 8 1 ) about to be sent.
  386. -* NOTICE *- 21:50:33.214 - 32817562 - DRSController::SendDRSCommand() - DRS Command(b1 crs 9 1 ) about to be sent.
  387. -* NOTICE *- 21:50:33.214 - 32817622 - DRSController::SendDRSCommand() - DRS Command(b1 crs 10 1 ) about to be sent.
  388. -* NOTICE *- 21:50:33.214 - 32817682 - DRSController::SendDRSCommand() - DRS Command(b1 crs 11 1 ) about to be sent.
  389. -* NOTICE *- 21:50:33.214 - 32817744 - DRSController::SendDRSCommand() - DRS Command(b1 crs 12 1 ) about to be sent.
  390. -* NOTICE *- 21:50:33.214 - 32817804 - DRSController::SendDRSCommand() - DRS Command(b1 crs 13 1 ) about to be sent.
  391. -* NOTICE *- 21:50:33.214 - 32817864 - DRSController::SendDRSCommand() - DRS Command(b1 crs 14 1 ) about to be sent.
  392. -* NOTICE *- 21:50:33.215 - 32817926 - DRSController::SendDRSCommand() - DRS Command(b1 crs 15 1 ) about to be sent.
  393. -* NOTICE *- 21:50:33.215 - 32817988 - DRSController::SendDRSCommand() - DRS Command(b1 crs 16 1 ) about to be sent.
  394. -* NOTICE *- 21:50:33.215 - 32818048 - DRSController::SendDRSCommand() - DRS Command(b1 crs 17 1 ) about to be sent.
  395. -* NOTICE *- 21:50:33.215 - 32818108 - DRSController::SendDRSCommand() - DRS Command(b1 crs 18 1 ) about to be sent.
  396. -* NOTICE *- 21:50:33.215 - 32818168 - DRSController::SendDRSCommand() - DRS Command(b1 crs 19 1 ) about to be sent.
  397. -* NOTICE *- 21:50:33.215 - 32818228 - DRSController::SendDRSCommand() - DRS Command(b1 crs 20 1 ) about to be sent.
  398. -* NOTICE *- 21:50:33.215 - 32818288 - DRSController::SendDRSCommand() - DRS Command(b1 crs 21 1 ) about to be sent.
  399. -* NOTICE *- 21:50:33.215 - 32818348 - DRSController::SendDRSCommand() - DRS Command(b1 crs 22 1 ) about to be sent.
  400. -* NOTICE *- 21:50:33.215 - 32818408 - DRSController::SendDRSCommand() - DRS Command(b1 crs 23 1 ) about to be sent.
  401. -* NOTICE *- 21:50:33.215 - 32818468 - DRSController::SendDRSCommand() - DRS Command(b1 crs 24 1 ) about to be sent.
  402. -* NOTICE *- 21:50:33.215 - 32818528 - DRSController::SendDRSCommand() - DRS Command(b1 crs 25 1 ) about to be sent.
  403. -* NOTICE *- 21:50:33.215 - 32818588 - DRSController::SendDRSCommand() - DRS Command(b1 crs 26 1 ) about to be sent.
  404. -* NOTICE *- 21:50:33.215 - 32818648 - DRSController::SendDRSCommand() - DRS Command(b1 crs 27 1 ) about to be sent.
  405. -* NOTICE *- 21:50:33.215 - 32818708 - DRSController::SendDRSCommand() - DRS Command(b1 crs 28 1 ) about to be sent.
  406. -* NOTICE *- 21:50:33.215 - 32818768 - DRSController::SendDRSCommand() - DRS Command(b1 crs 29 1 ) about to be sent.
  407. -* NOTICE *- 21:50:33.215 - 32818828 - DRSController::SendDRSCommand() - DRS Command(b1 crs 30 1 ) about to be sent.
  408. -* NOTICE *- 21:50:33.215 - 32818888 - DRSController::SendDRSCommand() - DRS Command(b1 crs 31 1 ) about to be sent.
  409. -* NOTICE *- 21:50:33.216 - 32818958 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 0 8 ) about to be sent.
  410. -* NOTICE *- 21:50:33.216 - 32819024 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 0 33 ) about to be sent.
  411. -* NOTICE *- 21:50:33.216 - 32819084 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 1 32 ) about to be sent.
  412. -* NOTICE *- 21:50:33.216 - 32819148 - DRSController::SendDRSCommand() - DRS Command(b3 crs 0 1 ) about to be sent.
  413. -* NOTICE *- 21:50:33.216 - 32819208 - DRSController::SendDRSCommand() - DRS Command(b3 crs 1 1 ) about to be sent.
  414. -* NOTICE *- 21:50:33.216 - 32819268 - DRSController::SendDRSCommand() - DRS Command(b3 crs 2 1 ) about to be sent.
  415. -* NOTICE *- 21:50:33.216 - 32819328 - DRSController::SendDRSCommand() - DRS Command(b3 crs 3 1 ) about to be sent.
  416. -* NOTICE *- 21:50:33.216 - 32819388 - DRSController::SendDRSCommand() - DRS Command(b3 crs 4 1 ) about to be sent.
  417. -* NOTICE *- 21:50:33.216 - 32819448 - DRSController::SendDRSCommand() - DRS Command(b3 crs 5 1 ) about to be sent.
  418. -* NOTICE *- 21:50:33.216 - 32819512 - DRSController::SendDRSCommand() - DRS Command(b3 crs 6 1 ) about to be sent.
  419. -* NOTICE *- 21:50:33.216 - 32819574 - DRSController::SendDRSCommand() - DRS Command(b3 crs 7 1 ) about to be sent.
  420. -* NOTICE *- 21:50:33.216 - 32819636 - DRSController::SendDRSCommand() - DRS Command(b3 crs 8 1 ) about to be sent.
  421. -* NOTICE *- 21:50:33.216 - 32819696 - DRSController::SendDRSCommand() - DRS Command(b3 crs 9 1 ) about to be sent.
  422. -* NOTICE *- 21:50:33.216 - 32819756 - DRSController::SendDRSCommand() - DRS Command(b3 crs 10 1 ) about to be sent.
  423. -* NOTICE *- 21:50:33.216 - 32819816 - DRSController::SendDRSCommand() - DRS Command(b3 crs 11 1 ) about to be sent.
  424. -* NOTICE *- 21:50:33.216 - 32819902 - DRSController::SendDRSCommand() - DRS Command(b3 crs 12 1 ) about to be sent.
  425. -* NOTICE *- 21:50:33.217 - 32819970 - DRSController::SendDRSCommand() - DRS Command(b3 crs 13 1 ) about to be sent.
  426. -* NOTICE *- 21:50:33.217 - 32820030 - DRSController::SendDRSCommand() - DRS Command(b3 crs 14 1 ) about to be sent.
  427. -* NOTICE *- 21:50:33.217 - 32820092 - DRSController::SendDRSCommand() - DRS Command(b3 crs 15 1 ) about to be sent.
  428. -* NOTICE *- 21:50:33.217 - 32820150 - DRSController::SendDRSCommand() - DRS Command(b3 crs 16 1 ) about to be sent.
  429. -* NOTICE *- 21:50:33.217 - 32820212 - DRSController::SendDRSCommand() - DRS Command(b3 crs 17 1 ) about to be sent.
  430. -* NOTICE *- 21:50:33.217 - 32820272 - DRSController::SendDRSCommand() - DRS Command(b3 crs 18 1 ) about to be sent.
  431. -* NOTICE *- 21:50:33.217 - 32820332 - DRSController::SendDRSCommand() - DRS Command(b3 crs 19 1 ) about to be sent.
  432. -* NOTICE *- 21:50:33.217 - 32820392 - DRSController::SendDRSCommand() - DRS Command(b3 crs 20 1 ) about to be sent.
  433. -* NOTICE *- 21:50:33.217 - 32820452 - DRSController::SendDRSCommand() - DRS Command(b3 crs 21 1 ) about to be sent.
  434. -* NOTICE *- 21:50:33.217 - 32820514 - DRSController::SendDRSCommand() - DRS Command(b3 crs 22 1 ) about to be sent.
  435. -* NOTICE *- 21:50:33.217 - 32820574 - DRSController::SendDRSCommand() - DRS Command(b3 crs 23 1 ) about to be sent.
  436. -* NOTICE *- 21:50:33.217 - 32820634 - DRSController::SendDRSCommand() - DRS Command(b3 crs 24 1 ) about to be sent.
  437. -* NOTICE *- 21:50:33.217 - 32820694 - DRSController::SendDRSCommand() - DRS Command(b3 crs 25 1 ) about to be sent.
  438. -* NOTICE *- 21:50:33.217 - 32820754 - DRSController::SendDRSCommand() - DRS Command(b3 crs 26 1 ) about to be sent.
  439. -* NOTICE *- 21:50:33.217 - 32820814 - DRSController::SendDRSCommand() - DRS Command(b3 crs 27 1 ) about to be sent.
  440. -* NOTICE *- 21:50:33.217 - 32820874 - DRSController::SendDRSCommand() - DRS Command(b3 crs 28 1 ) about to be sent.
  441. -* NOTICE *- 21:50:33.218 - 32820938 - DRSController::SendDRSCommand() - DRS Command(b3 crs 29 1 ) about to be sent.
  442. -* NOTICE *- 21:50:33.218 - 32821000 - DRSController::SendDRSCommand() - DRS Command(b3 crs 30 1 ) about to be sent.
  443. -* NOTICE *- 21:50:33.218 - 32821060 - DRSController::SendDRSCommand() - DRS Command(b3 crs 31 1 ) about to be sent.
  444. -* NOTICE *- 21:50:33.218 - 32821126 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 0 38 ) about to be sent.
  445. -* NOTICE *- 21:50:33.218 - 32821194 - DRSController::SendDRSCommand() - DRS Command(b1 gbd 0 1 ) about to be sent.
  446. -* NOTICE *- 21:50:33.218 - 32821262 - DRSController::SendDRSCommand() - DRS Command(b3 crs 8 0 ) about to be sent.
  447. -* NOTICE *- 21:50:33.218 - 32821340 - DRSController::SendDRSCommand() - DRS Command(b3 crs 9 0 ) about to be sent.
  448. -* NOTICE *- 21:50:33.218 - 32821418 - DRSController::SendDRSCommand() - DRS Command(b3 crs 10 0 ) about to be sent.
  449. -* NOTICE *- 21:50:33.218 - 32821496 - DRSController::SendDRSCommand() - DRS Command(b3 crs 11 0 ) about to be sent.
  450. -* NOTICE *- 21:50:33.218 - 32821550 - FormatCmdLine::GetNextLine() - Processing line number: 50
  451. -* NOTICE *- 21:50:33.218 - 32821574 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT1" 150 150 150 150
  452. -* NOTICE *- 21:50:33.218 - 32821602 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 50, Command Line: -SetInputRange "TT1" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  453. -* NOTICE *- 21:50:33.218 - 32821664 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT1
  454. -* NOTICE *- 21:50:33.218 - 32821706 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT1
  455. -* NOTICE *- 21:50:33.218 - 32821746 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT1
  456. -* NOTICE *- 21:50:33.218 - 32821786 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT1
  457. -* NOTICE *- 21:50:33.218 - 32821810 - FormatCmdLine::GetNextLine() - Processing line number: 51
  458. -* NOTICE *- 21:50:33.218 - 32821830 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT1" 1
  459. -* NOTICE *- 21:50:33.218 - 32821852 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 51, Command Line: -SetSubSamplingInterleave "TT1" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  460. -* NOTICE *- 21:50:33.218 - 32821918 - FormatCmdLine::GetNextLine() - Processing line number: 52
  461. -* NOTICE *- 21:50:33.219 - 32821942 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT1" True
  462. -* NOTICE *- 21:50:33.219 - 32821966 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 52, Command Line: -SetDspLowCutFilterEnabled "TT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  463. -* NOTICE *- 21:50:33.219 - 32822312 - FormatCmdLine::GetNextLine() - Processing line number: 53
  464. -* NOTICE *- 21:50:33.219 - 32822338 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT1" 600
  465. -* NOTICE *- 21:50:33.219 - 32822362 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 53, Command Line: -SetDspLowCutFrequency "TT1" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  466. -* NOTICE *- 21:50:33.219 - 32822568 - FormatCmdLine::GetNextLine() - Processing line number: 54
  467. -* NOTICE *- 21:50:33.219 - 32822592 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT1" 64
  468. -* NOTICE *- 21:50:33.219 - 32822614 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 54, Command Line: -SetDspLowCutNumberTaps "TT1" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  469. -* NOTICE *- 21:50:33.219 - 32822816 - FormatCmdLine::GetNextLine() - Processing line number: 55
  470. -* NOTICE *- 21:50:33.219 - 32822838 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT1" True
  471. -* NOTICE *- 21:50:33.219 - 32822862 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 55, Command Line: -SetDspHighCutFilterEnabled "TT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  472. -* NOTICE *- 21:50:33.220 - 32823100 - FormatCmdLine::GetNextLine() - Processing line number: 56
  473. -* NOTICE *- 21:50:33.220 - 32823126 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT1" 6000
  474. -* NOTICE *- 21:50:33.220 - 32823148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 56, Command Line: -SetDspHighCutFrequency "TT1" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  475. -* NOTICE *- 21:50:33.220 - 32823282 - FormatCmdLine::GetNextLine() - Processing line number: 57
  476. -* NOTICE *- 21:50:33.220 - 32823304 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT1" 32
  477. -* NOTICE *- 21:50:33.220 - 32823328 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 57, Command Line: -SetDspHighCutNumberTaps "TT1" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  478. -* NOTICE *- 21:50:33.220 - 32823462 - FormatCmdLine::GetNextLine() - Processing line number: 58
  479. -* NOTICE *- 21:50:33.220 - 32823488 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT1" True
  480. -* NOTICE *- 21:50:33.220 - 32823510 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 58, Command Line: -SetInputInverted "TT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  481. -* NOTICE *- 21:50:33.220 - 32823558 - FormatCmdLine::GetNextLine() - Processing line number: 59
  482. -* NOTICE *- 21:50:33.220 - 32823580 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT1" True
  483. -* NOTICE *- 21:50:33.220 - 32823604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 59, Command Line: -SetDiskWriteEnabled "TT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  484. -* NOTICE *- 21:50:33.220 - 32823640 - FormatCmdLine::GetNextLine() - Processing line number: 60
  485. -* NOTICE *- 21:50:33.220 - 32823660 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT1" False
  486. -* NOTICE *- 21:50:33.220 - 32823682 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 60, Command Line: -SetNetComDataBufferingEnabled "TT1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  487. -* NOTICE *- 21:50:33.220 - 32823720 - FormatCmdLine::GetNextLine() - Processing line number: 61
  488. -* NOTICE *- 21:50:33.220 - 32823740 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT1" 3000
  489. -* NOTICE *- 21:50:33.220 - 32823762 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 61, Command Line: -SetNetComDataBufferSize "TT1" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  490. -* NOTICE *- 21:50:33.220 - 32823800 - FormatCmdLine::GetNextLine() - Processing line number: 62
  491. -* NOTICE *- 21:50:33.220 - 32823818 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT1" 45 45 45 45
  492. -* NOTICE *- 21:50:33.220 - 32823842 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 62, Command Line: -SetSpikeThreshold "TT1" 45 45 45 45, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  493. -* NOTICE *- 21:50:33.220 - 32823896 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT1
  494. -* NOTICE *- 21:50:33.221 - 32823936 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT1
  495. -* NOTICE *- 21:50:33.221 - 32823972 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT1
  496. -* NOTICE *- 21:50:33.221 - 32824006 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT1
  497. -* NOTICE *- 21:50:33.221 - 32824032 - FormatCmdLine::GetNextLine() - Processing line number: 63
  498. -* NOTICE *- 21:50:33.221 - 32824050 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT1" Threshold
  499. -* NOTICE *- 21:50:33.221 - 32824074 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 63, Command Line: -SetSpikeDetectionType "TT1" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  500. -* NOTICE *- 21:50:33.221 - 32824124 - FormatCmdLine::GetNextLine() - Processing line number: 64
  501. -* NOTICE *- 21:50:33.221 - 32824144 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT1" 0 100 160
  502. -* NOTICE *- 21:50:33.221 - 32824168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 64, Command Line: -SetSpikeSlope "TT1" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  503. -* NOTICE *- 21:50:33.221 - 32824298 - FormatCmdLine::GetNextLine() - Processing line number: 65
  504. -* NOTICE *- 21:50:33.221 - 32824324 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT1" 1 100 160
  505. -* NOTICE *- 21:50:33.221 - 32824348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 65, Command Line: -SetSpikeSlope "TT1" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  506. -* NOTICE *- 21:50:33.221 - 32824398 - FormatCmdLine::GetNextLine() - Processing line number: 66
  507. -* NOTICE *- 21:50:33.221 - 32824418 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT1" 2 100 160
  508. -* NOTICE *- 21:50:33.221 - 32824440 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 66, Command Line: -SetSpikeSlope "TT1" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  509. -* NOTICE *- 21:50:33.221 - 32824486 - FormatCmdLine::GetNextLine() - Processing line number: 67
  510. -* NOTICE *- 21:50:33.221 - 32824506 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT1" 3 100 160
  511. -* NOTICE *- 21:50:33.221 - 32824530 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 67, Command Line: -SetSpikeSlope "TT1" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  512. -* NOTICE *- 21:50:33.221 - 32824578 - FormatCmdLine::GetNextLine() - Processing line number: 68
  513. -* NOTICE *- 21:50:33.221 - 32824598 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT1" False
  514. -* NOTICE *- 21:50:33.221 - 32824620 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 68, Command Line: -SetSpikeDualThresholding "TT1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  515. -* NOTICE *- 21:50:33.221 - 32824672 - FormatCmdLine::GetNextLine() - Processing line number: 69
  516. -* NOTICE *- 21:50:33.221 - 32824694 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT1" 750
  517. -* NOTICE *- 21:50:33.221 - 32824718 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 69, Command Line: -SetSpikeRetriggerTime "TT1" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  518. -* NOTICE *- 21:50:33.221 - 32824766 - FormatCmdLine::GetNextLine() - Processing line number: 70
  519. -* NOTICE *- 21:50:33.221 - 32824788 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT1" 8
  520. -* NOTICE *- 21:50:33.221 - 32824810 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 70, Command Line: -SetSpikeAlignmentPoint "TT1" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  521. -* NOTICE *- 21:50:33.221 - 32824852 - FormatCmdLine::GetNextLine() - Processing line number: 71
  522. -* NOTICE *- 21:50:33.221 - 32824872 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT1" 0 True
  523. -* NOTICE *- 21:50:33.221 - 32824894 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 71, Command Line: -SetSubChannelEnabled "TT1" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  524. -* NOTICE *- 21:50:33.222 - 32824936 - FormatCmdLine::GetNextLine() - Processing line number: 72
  525. -* NOTICE *- 21:50:33.222 - 32824958 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT1" 1 True
  526. -* NOTICE *- 21:50:33.222 - 32824980 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 72, Command Line: -SetSubChannelEnabled "TT1" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  527. -* NOTICE *- 21:50:33.222 - 32825020 - FormatCmdLine::GetNextLine() - Processing line number: 73
  528. -* NOTICE *- 21:50:33.222 - 32825040 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT1" 2 True
  529. -* NOTICE *- 21:50:33.222 - 32825064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 73, Command Line: -SetSubChannelEnabled "TT1" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  530. -* NOTICE *- 21:50:33.222 - 32825106 - FormatCmdLine::GetNextLine() - Processing line number: 74
  531. -* NOTICE *- 21:50:33.222 - 32825126 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT1" 3 True
  532. -* NOTICE *- 21:50:33.222 - 32825148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 74, Command Line: -SetSubChannelEnabled "TT1" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  533. -* NOTICE *- 21:50:33.222 - 32825186 - FormatCmdLine::GetNextLine() - Processing line number: 75
  534. -* NOTICE *- 21:50:33.222 - 32825206 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Peak 0 0 0 31
  535. -* NOTICE *- 21:50:33.222 - 32825228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 75, Command Line: -SetWaveformFeature "TT1" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  536. -* NOTICE *- 21:50:33.222 - 32825286 - FormatCmdLine::GetNextLine() - Processing line number: 76
  537. -* NOTICE *- 21:50:33.222 - 32825306 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Peak 1 1 0 31
  538. -* NOTICE *- 21:50:33.222 - 32825328 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 76, Command Line: -SetWaveformFeature "TT1" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  539. -* NOTICE *- 21:50:33.222 - 32825382 - FormatCmdLine::GetNextLine() - Processing line number: 77
  540. -* NOTICE *- 21:50:33.222 - 32825404 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Peak 2 2 0 31
  541. -* NOTICE *- 21:50:33.222 - 32825426 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 77, Command Line: -SetWaveformFeature "TT1" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  542. -* NOTICE *- 21:50:33.222 - 32825480 - FormatCmdLine::GetNextLine() - Processing line number: 78
  543. -* NOTICE *- 21:50:33.222 - 32825502 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Peak 3 3 0 31
  544. -* NOTICE *- 21:50:33.222 - 32825524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 78, Command Line: -SetWaveformFeature "TT1" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  545. -* NOTICE *- 21:50:33.222 - 32825578 - FormatCmdLine::GetNextLine() - Processing line number: 79
  546. -* NOTICE *- 21:50:33.222 - 32825598 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Valley 4 0 0 31
  547. -* NOTICE *- 21:50:33.222 - 32825620 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 79, Command Line: -SetWaveformFeature "TT1" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  548. -* NOTICE *- 21:50:33.222 - 32825676 - FormatCmdLine::GetNextLine() - Processing line number: 80
  549. -* NOTICE *- 21:50:33.222 - 32825696 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Valley 5 1 0 31
  550. -* NOTICE *- 21:50:33.222 - 32825720 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 80, Command Line: -SetWaveformFeature "TT1" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  551. -* NOTICE *- 21:50:33.222 - 32825774 - FormatCmdLine::GetNextLine() - Processing line number: 81
  552. -* NOTICE *- 21:50:33.222 - 32825796 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Valley 6 2 0 31
  553. -* NOTICE *- 21:50:33.222 - 32825818 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 81, Command Line: -SetWaveformFeature "TT1" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  554. -* NOTICE *- 21:50:33.223 - 32825948 - FormatCmdLine::GetNextLine() - Processing line number: 82
  555. -* NOTICE *- 21:50:33.223 - 32825972 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT1" Valley 7 3 0 31
  556. -* NOTICE *- 21:50:33.223 - 32825996 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 82, Command Line: -SetWaveformFeature "TT1" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  557. -* NOTICE *- 21:50:33.223 - 32826050 - FormatCmdLine::GetNextLine() - Processing line number: 83
  558. -* NOTICE *- 21:50:33.223 - 32826070 - FormatCmdLine::GetNextLine() - Processing line:
  559. -* NOTICE *- 21:50:33.223 - 32826088 - FormatCmdLine::GetNextLine() - Processing line number: 84
  560. -* NOTICE *- 21:50:33.223 - 32826106 - FormatCmdLine::GetNextLine() - Processing line:
  561. -* NOTICE *- 21:50:33.223 - 32826126 - FormatCmdLine::GetNextLine() - Processing line number: 85
  562. -* NOTICE *- 21:50:33.223 - 32826144 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT2"
  563. -* NOTICE *- 21:50:33.223 - 32826164 - FormatCmdLine::GetNextLine() - Processing line number: 86
  564. -* NOTICE *- 21:50:33.223 - 32826182 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT2" "AcqSystem1" 4
  565. -* NOTICE *- 21:50:33.223 - 32826204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 86, Command Line: -CreateSpikeAcqEnt "TT2" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  566. -* NOTICE *- 21:50:33.223 - 32826478 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE TT2. Channel Count: 4
  567. -* NOTICE *- 21:50:33.224 - 32827868 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT2
  568. -* NOTICE *- 21:50:33.225 - 32827920 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT2
  569. -* NOTICE *- 21:50:33.225 - 32827962 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT2
  570. -* NOTICE *- 21:50:33.225 - 32828002 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT2
  571. -* NOTICE *- 21:50:33.225 - 32828030 - FormatCmdLine::GetNextLine() - Processing line number: 87
  572. -* NOTICE *- 21:50:33.225 - 32828050 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT2" True
  573. -* NOTICE *- 21:50:33.225 - 32828072 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 87, Command Line: -SetAcqEntProcessingEnabled "TT2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  574. -* NOTICE *- 21:50:33.225 - 32828112 - FormatCmdLine::GetNextLine() - Processing line number: 88
  575. -* NOTICE *- 21:50:33.225 - 32828130 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT2" 55 54 53 52
  576. -* NOTICE *- 21:50:33.225 - 32828154 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 88, Command Line: -SetChannelNumber "TT2" 55 54 53 52, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  577. -* NOTICE *- 21:50:33.225 - 32828226 - FormatCmdLine::GetNextLine() - Processing line number: 89
  578. -* NOTICE *- 21:50:33.225 - 32828246 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT2" 8
  579. -* NOTICE *- 21:50:33.225 - 32828270 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 89, Command Line: -SetAcqEntReference "TT2" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  580. -* NOTICE *- 21:50:33.225 - 32828346 - DRSController::SendDRSCommand() - DRS Command(b3 crs 23 0 ) about to be sent.
  581. -* NOTICE *- 21:50:33.225 - 32828428 - DRSController::SendDRSCommand() - DRS Command(b3 crs 22 0 ) about to be sent.
  582. -* NOTICE *- 21:50:33.225 - 32828512 - DRSController::SendDRSCommand() - DRS Command(b3 crs 21 0 ) about to be sent.
  583. -* NOTICE *- 21:50:33.225 - 32828592 - DRSController::SendDRSCommand() - DRS Command(b3 crs 20 0 ) about to be sent.
  584. -* NOTICE *- 21:50:33.225 - 32828646 - FormatCmdLine::GetNextLine() - Processing line number: 90
  585. -* NOTICE *- 21:50:33.225 - 32828670 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT2" 150 150 150 150
  586. -* NOTICE *- 21:50:33.225 - 32828692 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 90, Command Line: -SetInputRange "TT2" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  587. -* NOTICE *- 21:50:33.225 - 32828752 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT2
  588. -* NOTICE *- 21:50:33.225 - 32828816 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT2
  589. -* NOTICE *- 21:50:33.225 - 32828856 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT2
  590. -* NOTICE *- 21:50:33.225 - 32828894 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT2
  591. -* NOTICE *- 21:50:33.226 - 32828920 - FormatCmdLine::GetNextLine() - Processing line number: 91
  592. -* NOTICE *- 21:50:33.226 - 32828940 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT2" 1
  593. -* NOTICE *- 21:50:33.226 - 32828964 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 91, Command Line: -SetSubSamplingInterleave "TT2" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  594. -* NOTICE *- 21:50:33.226 - 32829010 - FormatCmdLine::GetNextLine() - Processing line number: 92
  595. -* NOTICE *- 21:50:33.226 - 32829030 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT2" True
  596. -* NOTICE *- 21:50:33.226 - 32829052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 92, Command Line: -SetDspLowCutFilterEnabled "TT2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  597. -* NOTICE *- 21:50:33.226 - 32829426 - FormatCmdLine::GetNextLine() - Processing line number: 93
  598. -* NOTICE *- 21:50:33.226 - 32829450 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT2" 600
  599. -* NOTICE *- 21:50:33.226 - 32829474 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 93, Command Line: -SetDspLowCutFrequency "TT2" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  600. -* NOTICE *- 21:50:33.226 - 32829688 - FormatCmdLine::GetNextLine() - Processing line number: 94
  601. -* NOTICE *- 21:50:33.226 - 32829712 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT2" 64
  602. -* NOTICE *- 21:50:33.226 - 32829734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 94, Command Line: -SetDspLowCutNumberTaps "TT2" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  603. -* NOTICE *- 21:50:33.227 - 32829942 - FormatCmdLine::GetNextLine() - Processing line number: 95
  604. -* NOTICE *- 21:50:33.227 - 32829966 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT2" True
  605. -* NOTICE *- 21:50:33.227 - 32829988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 95, Command Line: -SetDspHighCutFilterEnabled "TT2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  606. -* NOTICE *- 21:50:33.227 - 32830226 - FormatCmdLine::GetNextLine() - Processing line number: 96
  607. -* NOTICE *- 21:50:33.227 - 32830250 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT2" 6000
  608. -* NOTICE *- 21:50:33.227 - 32830272 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 96, Command Line: -SetDspHighCutFrequency "TT2" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  609. -* NOTICE *- 21:50:33.227 - 32830410 - FormatCmdLine::GetNextLine() - Processing line number: 97
  610. -* NOTICE *- 21:50:33.227 - 32830434 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT2" 32
  611. -* NOTICE *- 21:50:33.227 - 32830456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 97, Command Line: -SetDspHighCutNumberTaps "TT2" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  612. -* NOTICE *- 21:50:33.227 - 32830586 - FormatCmdLine::GetNextLine() - Processing line number: 98
  613. -* NOTICE *- 21:50:33.227 - 32830608 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT2" True
  614. -* NOTICE *- 21:50:33.227 - 32830630 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 98, Command Line: -SetInputInverted "TT2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  615. -* NOTICE *- 21:50:33.227 - 32830668 - FormatCmdLine::GetNextLine() - Processing line number: 99
  616. -* NOTICE *- 21:50:33.227 - 32830688 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT2" True
  617. -* NOTICE *- 21:50:33.227 - 32830710 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 99, Command Line: -SetDiskWriteEnabled "TT2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  618. -* NOTICE *- 21:50:33.227 - 32830746 - FormatCmdLine::GetNextLine() - Processing line number: 100
  619. -* NOTICE *- 21:50:33.227 - 32830766 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT2" False
  620. -* NOTICE *- 21:50:33.227 - 32830788 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 100, Command Line: -SetNetComDataBufferingEnabled "TT2" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  621. -* NOTICE *- 21:50:33.227 - 32830826 - FormatCmdLine::GetNextLine() - Processing line number: 101
  622. -* NOTICE *- 21:50:33.227 - 32830844 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT2" 3000
  623. -* NOTICE *- 21:50:33.227 - 32830866 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 101, Command Line: -SetNetComDataBufferSize "TT2" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  624. -* NOTICE *- 21:50:33.227 - 32830904 - FormatCmdLine::GetNextLine() - Processing line number: 102
  625. -* NOTICE *- 21:50:33.228 - 32830926 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT2" 45 45 45 45
  626. -* NOTICE *- 21:50:33.228 - 32830950 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 102, Command Line: -SetSpikeThreshold "TT2" 45 45 45 45, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  627. -* NOTICE *- 21:50:33.228 - 32831004 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT2
  628. -* NOTICE *- 21:50:33.228 - 32831038 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT2
  629. -* NOTICE *- 21:50:33.228 - 32831070 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT2
  630. -* NOTICE *- 21:50:33.228 - 32831102 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT2
  631. -* NOTICE *- 21:50:33.228 - 32831126 - FormatCmdLine::GetNextLine() - Processing line number: 103
  632. -* NOTICE *- 21:50:33.228 - 32831144 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT2" Threshold
  633. -* NOTICE *- 21:50:33.228 - 32831166 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 103, Command Line: -SetSpikeDetectionType "TT2" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  634. -* NOTICE *- 21:50:33.228 - 32831216 - FormatCmdLine::GetNextLine() - Processing line number: 104
  635. -* NOTICE *- 21:50:33.228 - 32831238 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT2" 0 100 160
  636. -* NOTICE *- 21:50:33.228 - 32831260 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 104, Command Line: -SetSpikeSlope "TT2" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  637. -* NOTICE *- 21:50:33.228 - 32831308 - FormatCmdLine::GetNextLine() - Processing line number: 105
  638. -* NOTICE *- 21:50:33.228 - 32831328 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT2" 1 100 160
  639. -* NOTICE *- 21:50:33.228 - 32831350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 105, Command Line: -SetSpikeSlope "TT2" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  640. -* NOTICE *- 21:50:33.228 - 32831396 - FormatCmdLine::GetNextLine() - Processing line number: 106
  641. -* NOTICE *- 21:50:33.228 - 32831416 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT2" 2 100 160
  642. -* NOTICE *- 21:50:33.228 - 32831438 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 106, Command Line: -SetSpikeSlope "TT2" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  643. -* NOTICE *- 21:50:33.228 - 32831484 - FormatCmdLine::GetNextLine() - Processing line number: 107
  644. -* NOTICE *- 21:50:33.228 - 32831504 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT2" 3 100 160
  645. -* NOTICE *- 21:50:33.228 - 32831526 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 107, Command Line: -SetSpikeSlope "TT2" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  646. -* NOTICE *- 21:50:33.228 - 32831574 - FormatCmdLine::GetNextLine() - Processing line number: 108
  647. -* NOTICE *- 21:50:33.228 - 32831592 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT2" False
  648. -* NOTICE *- 21:50:33.228 - 32831616 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 108, Command Line: -SetSpikeDualThresholding "TT2" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  649. -* NOTICE *- 21:50:33.228 - 32831658 - FormatCmdLine::GetNextLine() - Processing line number: 109
  650. -* NOTICE *- 21:50:33.228 - 32831678 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT2" 750
  651. -* NOTICE *- 21:50:33.228 - 32831700 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 109, Command Line: -SetSpikeRetriggerTime "TT2" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  652. -* NOTICE *- 21:50:33.228 - 32831740 - FormatCmdLine::GetNextLine() - Processing line number: 110
  653. -* NOTICE *- 21:50:33.228 - 32831760 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT2" 8
  654. -* NOTICE *- 21:50:33.228 - 32831782 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 110, Command Line: -SetSpikeAlignmentPoint "TT2" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  655. -* NOTICE *- 21:50:33.228 - 32831822 - FormatCmdLine::GetNextLine() - Processing line number: 111
  656. -* NOTICE *- 21:50:33.228 - 32831840 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT2" 0 True
  657. -* NOTICE *- 21:50:33.228 - 32831864 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 111, Command Line: -SetSubChannelEnabled "TT2" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  658. -* NOTICE *- 21:50:33.228 - 32831902 - FormatCmdLine::GetNextLine() - Processing line number: 112
  659. -* NOTICE *- 21:50:33.229 - 32831938 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT2" 1 True
  660. -* NOTICE *- 21:50:33.229 - 32831962 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 112, Command Line: -SetSubChannelEnabled "TT2" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  661. -* NOTICE *- 21:50:33.229 - 32832006 - FormatCmdLine::GetNextLine() - Processing line number: 113
  662. -* NOTICE *- 21:50:33.229 - 32832028 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT2" 2 True
  663. -* NOTICE *- 21:50:33.229 - 32832050 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 113, Command Line: -SetSubChannelEnabled "TT2" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  664. -* NOTICE *- 21:50:33.229 - 32832090 - FormatCmdLine::GetNextLine() - Processing line number: 114
  665. -* NOTICE *- 21:50:33.229 - 32832110 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT2" 3 True
  666. -* NOTICE *- 21:50:33.229 - 32832132 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 114, Command Line: -SetSubChannelEnabled "TT2" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  667. -* NOTICE *- 21:50:33.229 - 32832172 - FormatCmdLine::GetNextLine() - Processing line number: 115
  668. -* NOTICE *- 21:50:33.229 - 32832190 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Peak 0 0 0 31
  669. -* NOTICE *- 21:50:33.229 - 32832212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 115, Command Line: -SetWaveformFeature "TT2" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  670. -* NOTICE *- 21:50:33.229 - 32832270 - FormatCmdLine::GetNextLine() - Processing line number: 116
  671. -* NOTICE *- 21:50:33.229 - 32832290 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Peak 1 1 0 31
  672. -* NOTICE *- 21:50:33.229 - 32832314 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 116, Command Line: -SetWaveformFeature "TT2" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  673. -* NOTICE *- 21:50:33.229 - 32832370 - FormatCmdLine::GetNextLine() - Processing line number: 117
  674. -* NOTICE *- 21:50:33.229 - 32832390 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Peak 2 2 0 31
  675. -* NOTICE *- 21:50:33.229 - 32832412 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 117, Command Line: -SetWaveformFeature "TT2" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  676. -* NOTICE *- 21:50:33.229 - 32832468 - FormatCmdLine::GetNextLine() - Processing line number: 118
  677. -* NOTICE *- 21:50:33.229 - 32832488 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Peak 3 3 0 31
  678. -* NOTICE *- 21:50:33.229 - 32832510 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 118, Command Line: -SetWaveformFeature "TT2" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  679. -* NOTICE *- 21:50:33.229 - 32832566 - FormatCmdLine::GetNextLine() - Processing line number: 119
  680. -* NOTICE *- 21:50:33.229 - 32832586 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Valley 4 0 0 31
  681. -* NOTICE *- 21:50:33.229 - 32832608 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 119, Command Line: -SetWaveformFeature "TT2" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  682. -* NOTICE *- 21:50:33.229 - 32832666 - FormatCmdLine::GetNextLine() - Processing line number: 120
  683. -* NOTICE *- 21:50:33.229 - 32832686 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Valley 5 1 0 31
  684. -* NOTICE *- 21:50:33.229 - 32832708 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 120, Command Line: -SetWaveformFeature "TT2" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  685. -* NOTICE *- 21:50:33.229 - 32832772 - FormatCmdLine::GetNextLine() - Processing line number: 121
  686. -* NOTICE *- 21:50:33.229 - 32832794 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Valley 6 2 0 31
  687. -* NOTICE *- 21:50:33.229 - 32832816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 121, Command Line: -SetWaveformFeature "TT2" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  688. -* NOTICE *- 21:50:33.229 - 32832880 - FormatCmdLine::GetNextLine() - Processing line number: 122
  689. -* NOTICE *- 21:50:33.229 - 32832900 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT2" Valley 7 3 0 31
  690. -* NOTICE *- 21:50:33.230 - 32832926 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 122, Command Line: -SetWaveformFeature "TT2" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  691. -* NOTICE *- 21:50:33.230 - 32832986 - FormatCmdLine::GetNextLine() - Processing line number: 123
  692. -* NOTICE *- 21:50:33.230 - 32833006 - FormatCmdLine::GetNextLine() - Processing line:
  693. -* NOTICE *- 21:50:33.230 - 32833026 - FormatCmdLine::GetNextLine() - Processing line number: 124
  694. -* NOTICE *- 21:50:33.230 - 32833042 - FormatCmdLine::GetNextLine() - Processing line:
  695. -* NOTICE *- 21:50:33.230 - 32833062 - FormatCmdLine::GetNextLine() - Processing line number: 125
  696. -* NOTICE *- 21:50:33.230 - 32833080 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT3"
  697. -* NOTICE *- 21:50:33.230 - 32833098 - FormatCmdLine::GetNextLine() - Processing line number: 126
  698. -* NOTICE *- 21:50:33.230 - 32833116 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT3" "AcqSystem1" 4
  699. -* NOTICE *- 21:50:33.230 - 32833138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 126, Command Line: -CreateSpikeAcqEnt "TT3" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  700. -* NOTICE *- 21:50:33.230 - 32833412 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE TT3. Channel Count: 4
  701. -* NOTICE *- 21:50:33.245 - 32848824 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT3
  702. -* NOTICE *- 21:50:33.245 - 32848876 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT3
  703. -* NOTICE *- 21:50:33.246 - 32848920 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT3
  704. -* NOTICE *- 21:50:33.246 - 32848962 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT3
  705. -* NOTICE *- 21:50:33.247 - 32850080 - FormatCmdLine::GetNextLine() - Processing line number: 127
  706. -* NOTICE *- 21:50:33.247 - 32850106 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT3" True
  707. -* NOTICE *- 21:50:33.247 - 32850130 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 127, Command Line: -SetAcqEntProcessingEnabled "TT3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  708. -* NOTICE *- 21:50:33.247 - 32850172 - FormatCmdLine::GetNextLine() - Processing line number: 128
  709. -* NOTICE *- 21:50:33.247 - 32850192 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT3" 15 14 13 12
  710. -* NOTICE *- 21:50:33.247 - 32850214 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 128, Command Line: -SetChannelNumber "TT3" 15 14 13 12, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  711. -* NOTICE *- 21:50:33.247 - 32850290 - FormatCmdLine::GetNextLine() - Processing line number: 129
  712. -* NOTICE *- 21:50:33.247 - 32850310 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT3" 8
  713. -* NOTICE *- 21:50:33.247 - 32850338 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 129, Command Line: -SetAcqEntReference "TT3" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  714. -* NOTICE *- 21:50:33.247 - 32850408 - DRSController::SendDRSCommand() - DRS Command(b1 crs 15 0 ) about to be sent.
  715. -* NOTICE *- 21:50:33.247 - 32850478 - DRSController::SendDRSCommand() - DRS Command(b1 crs 14 0 ) about to be sent.
  716. -* NOTICE *- 21:50:33.247 - 32850544 - DRSController::SendDRSCommand() - DRS Command(b1 crs 13 0 ) about to be sent.
  717. -* NOTICE *- 21:50:33.247 - 32850608 - DRSController::SendDRSCommand() - DRS Command(b1 crs 12 0 ) about to be sent.
  718. -* NOTICE *- 21:50:33.247 - 32850660 - FormatCmdLine::GetNextLine() - Processing line number: 130
  719. -* NOTICE *- 21:50:33.247 - 32850682 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT3" 200 200 200 200
  720. -* NOTICE *- 21:50:33.247 - 32850706 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 130, Command Line: -SetInputRange "TT3" 200 200 200 200, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  721. -* NOTICE *- 21:50:33.247 - 32850764 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 0. AE Name: TT3
  722. -* NOTICE *- 21:50:33.247 - 32850804 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 1. AE Name: TT3
  723. -* NOTICE *- 21:50:33.247 - 32850840 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 2. AE Name: TT3
  724. -* NOTICE *- 21:50:33.247 - 32850878 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 3. AE Name: TT3
  725. -* NOTICE *- 21:50:33.247 - 32850902 - FormatCmdLine::GetNextLine() - Processing line number: 131
  726. -* NOTICE *- 21:50:33.248 - 32850928 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT3" 1
  727. -* NOTICE *- 21:50:33.248 - 32850952 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 131, Command Line: -SetSubSamplingInterleave "TT3" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  728. -* NOTICE *- 21:50:33.248 - 32851000 - FormatCmdLine::GetNextLine() - Processing line number: 132
  729. -* NOTICE *- 21:50:33.248 - 32851020 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT3" True
  730. -* NOTICE *- 21:50:33.248 - 32851042 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 132, Command Line: -SetDspLowCutFilterEnabled "TT3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  731. -* NOTICE *- 21:50:33.248 - 32851386 - FormatCmdLine::GetNextLine() - Processing line number: 133
  732. -* NOTICE *- 21:50:33.248 - 32851410 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT3" 600
  733. -* NOTICE *- 21:50:33.248 - 32851434 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 133, Command Line: -SetDspLowCutFrequency "TT3" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  734. -* NOTICE *- 21:50:33.248 - 32851642 - FormatCmdLine::GetNextLine() - Processing line number: 134
  735. -* NOTICE *- 21:50:33.248 - 32851664 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT3" 64
  736. -* NOTICE *- 21:50:33.248 - 32851686 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 134, Command Line: -SetDspLowCutNumberTaps "TT3" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  737. -* NOTICE *- 21:50:33.248 - 32851892 - FormatCmdLine::GetNextLine() - Processing line number: 135
  738. -* NOTICE *- 21:50:33.248 - 32851914 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT3" True
  739. -* NOTICE *- 21:50:33.249 - 32851940 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 135, Command Line: -SetDspHighCutFilterEnabled "TT3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  740. -* NOTICE *- 21:50:33.249 - 32852186 - FormatCmdLine::GetNextLine() - Processing line number: 136
  741. -* NOTICE *- 21:50:33.249 - 32852214 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT3" 6000
  742. -* NOTICE *- 21:50:33.249 - 32852236 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 136, Command Line: -SetDspHighCutFrequency "TT3" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  743. -* NOTICE *- 21:50:33.249 - 32852370 - FormatCmdLine::GetNextLine() - Processing line number: 137
  744. -* NOTICE *- 21:50:33.249 - 32852392 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT3" 32
  745. -* NOTICE *- 21:50:33.249 - 32852414 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 137, Command Line: -SetDspHighCutNumberTaps "TT3" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  746. -* NOTICE *- 21:50:33.249 - 32852546 - FormatCmdLine::GetNextLine() - Processing line number: 138
  747. -* NOTICE *- 21:50:33.249 - 32852568 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT3" True
  748. -* NOTICE *- 21:50:33.249 - 32852590 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 138, Command Line: -SetInputInverted "TT3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  749. -* NOTICE *- 21:50:33.249 - 32852628 - FormatCmdLine::GetNextLine() - Processing line number: 139
  750. -* NOTICE *- 21:50:33.249 - 32852648 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT3" True
  751. -* NOTICE *- 21:50:33.249 - 32852670 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 139, Command Line: -SetDiskWriteEnabled "TT3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  752. -* NOTICE *- 21:50:33.249 - 32852708 - FormatCmdLine::GetNextLine() - Processing line number: 140
  753. -* NOTICE *- 21:50:33.249 - 32852728 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT3" False
  754. -* NOTICE *- 21:50:33.249 - 32852748 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 140, Command Line: -SetNetComDataBufferingEnabled "TT3" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  755. -* NOTICE *- 21:50:33.249 - 32852786 - FormatCmdLine::GetNextLine() - Processing line number: 141
  756. -* NOTICE *- 21:50:33.249 - 32852806 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT3" 3000
  757. -* NOTICE *- 21:50:33.249 - 32852828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 141, Command Line: -SetNetComDataBufferSize "TT3" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  758. -* NOTICE *- 21:50:33.249 - 32852866 - FormatCmdLine::GetNextLine() - Processing line number: 142
  759. -* NOTICE *- 21:50:33.249 - 32852886 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT3" 45 45 45 45
  760. -* NOTICE *- 21:50:33.249 - 32852908 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 142, Command Line: -SetSpikeThreshold "TT3" 45 45 45 45, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  761. -* NOTICE *- 21:50:33.250 - 32852966 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT3
  762. -* NOTICE *- 21:50:33.250 - 32853002 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT3
  763. -* NOTICE *- 21:50:33.250 - 32853034 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT3
  764. -* NOTICE *- 21:50:33.250 - 32853068 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT3
  765. -* NOTICE *- 21:50:33.250 - 32853096 - FormatCmdLine::GetNextLine() - Processing line number: 143
  766. -* NOTICE *- 21:50:33.250 - 32853116 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT3" Threshold
  767. -* NOTICE *- 21:50:33.250 - 32853138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 143, Command Line: -SetSpikeDetectionType "TT3" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  768. -* NOTICE *- 21:50:33.250 - 32853184 - FormatCmdLine::GetNextLine() - Processing line number: 144
  769. -* NOTICE *- 21:50:33.250 - 32853204 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT3" 0 100 160
  770. -* NOTICE *- 21:50:33.250 - 32853228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 144, Command Line: -SetSpikeSlope "TT3" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  771. -* NOTICE *- 21:50:33.250 - 32853274 - FormatCmdLine::GetNextLine() - Processing line number: 145
  772. -* NOTICE *- 21:50:33.250 - 32853294 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT3" 1 100 160
  773. -* NOTICE *- 21:50:33.250 - 32853316 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 145, Command Line: -SetSpikeSlope "TT3" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  774. -* NOTICE *- 21:50:33.250 - 32853362 - FormatCmdLine::GetNextLine() - Processing line number: 146
  775. -* NOTICE *- 21:50:33.250 - 32853382 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT3" 2 100 160
  776. -* NOTICE *- 21:50:33.250 - 32853404 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 146, Command Line: -SetSpikeSlope "TT3" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  777. -* NOTICE *- 21:50:33.250 - 32853452 - FormatCmdLine::GetNextLine() - Processing line number: 147
  778. -* NOTICE *- 21:50:33.250 - 32853470 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT3" 3 100 160
  779. -* NOTICE *- 21:50:33.250 - 32853492 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 147, Command Line: -SetSpikeSlope "TT3" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  780. -* NOTICE *- 21:50:33.250 - 32853540 - FormatCmdLine::GetNextLine() - Processing line number: 148
  781. -* NOTICE *- 21:50:33.250 - 32853560 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT3" False
  782. -* NOTICE *- 21:50:33.250 - 32853582 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 148, Command Line: -SetSpikeDualThresholding "TT3" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  783. -* NOTICE *- 21:50:33.250 - 32853624 - FormatCmdLine::GetNextLine() - Processing line number: 149
  784. -* NOTICE *- 21:50:33.250 - 32853644 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT3" 750
  785. -* NOTICE *- 21:50:33.250 - 32853668 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 149, Command Line: -SetSpikeRetriggerTime "TT3" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  786. -* NOTICE *- 21:50:33.250 - 32853708 - FormatCmdLine::GetNextLine() - Processing line number: 150
  787. -* NOTICE *- 21:50:33.250 - 32853726 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT3" 8
  788. -* NOTICE *- 21:50:33.250 - 32853748 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 150, Command Line: -SetSpikeAlignmentPoint "TT3" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  789. -* NOTICE *- 21:50:33.250 - 32853788 - FormatCmdLine::GetNextLine() - Processing line number: 151
  790. -* NOTICE *- 21:50:33.250 - 32853808 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT3" 0 True
  791. -* NOTICE *- 21:50:33.250 - 32853830 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 151, Command Line: -SetSubChannelEnabled "TT3" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  792. -* NOTICE *- 21:50:33.250 - 32853874 - FormatCmdLine::GetNextLine() - Processing line number: 152
  793. -* NOTICE *- 21:50:33.250 - 32853896 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT3" 1 True
  794. -* NOTICE *- 21:50:33.251 - 32853922 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 152, Command Line: -SetSubChannelEnabled "TT3" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  795. -* NOTICE *- 21:50:33.251 - 32853962 - FormatCmdLine::GetNextLine() - Processing line number: 153
  796. -* NOTICE *- 21:50:33.251 - 32853982 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT3" 2 True
  797. -* NOTICE *- 21:50:33.251 - 32854004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 153, Command Line: -SetSubChannelEnabled "TT3" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  798. -* NOTICE *- 21:50:33.251 - 32854042 - FormatCmdLine::GetNextLine() - Processing line number: 154
  799. -* NOTICE *- 21:50:33.251 - 32854062 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT3" 3 True
  800. -* NOTICE *- 21:50:33.251 - 32854084 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 154, Command Line: -SetSubChannelEnabled "TT3" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  801. -* NOTICE *- 21:50:33.251 - 32854124 - FormatCmdLine::GetNextLine() - Processing line number: 155
  802. -* NOTICE *- 21:50:33.251 - 32854142 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Peak 0 0 0 31
  803. -* NOTICE *- 21:50:33.251 - 32854164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 155, Command Line: -SetWaveformFeature "TT3" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  804. -* NOTICE *- 21:50:33.251 - 32854224 - FormatCmdLine::GetNextLine() - Processing line number: 156
  805. -* NOTICE *- 21:50:33.251 - 32854246 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Peak 1 1 0 31
  806. -* NOTICE *- 21:50:33.251 - 32854268 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 156, Command Line: -SetWaveformFeature "TT3" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  807. -* NOTICE *- 21:50:33.251 - 32854322 - FormatCmdLine::GetNextLine() - Processing line number: 157
  808. -* NOTICE *- 21:50:33.251 - 32854344 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Peak 2 2 0 31
  809. -* NOTICE *- 21:50:33.251 - 32854472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 157, Command Line: -SetWaveformFeature "TT3" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  810. -* NOTICE *- 21:50:33.251 - 32854532 - FormatCmdLine::GetNextLine() - Processing line number: 158
  811. -* NOTICE *- 21:50:33.251 - 32854552 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Peak 3 3 0 31
  812. -* NOTICE *- 21:50:33.251 - 32854574 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 158, Command Line: -SetWaveformFeature "TT3" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  813. -* NOTICE *- 21:50:33.251 - 32854628 - FormatCmdLine::GetNextLine() - Processing line number: 159
  814. -* NOTICE *- 21:50:33.251 - 32854648 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Valley 4 0 0 31
  815. -* NOTICE *- 21:50:33.251 - 32854670 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 159, Command Line: -SetWaveformFeature "TT3" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  816. -* NOTICE *- 21:50:33.251 - 32854730 - FormatCmdLine::GetNextLine() - Processing line number: 160
  817. -* NOTICE *- 21:50:33.251 - 32854752 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Valley 5 1 0 31
  818. -* NOTICE *- 21:50:33.251 - 32854776 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 160, Command Line: -SetWaveformFeature "TT3" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  819. -* NOTICE *- 21:50:33.251 - 32854830 - FormatCmdLine::GetNextLine() - Processing line number: 161
  820. -* NOTICE *- 21:50:33.251 - 32854850 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Valley 6 2 0 31
  821. -* NOTICE *- 21:50:33.251 - 32854872 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 161, Command Line: -SetWaveformFeature "TT3" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  822. -* NOTICE *- 21:50:33.252 - 32854932 - FormatCmdLine::GetNextLine() - Processing line number: 162
  823. -* NOTICE *- 21:50:33.252 - 32854954 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT3" Valley 7 3 0 31
  824. -* NOTICE *- 21:50:33.252 - 32854976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 162, Command Line: -SetWaveformFeature "TT3" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  825. -* NOTICE *- 21:50:33.252 - 32855030 - FormatCmdLine::GetNextLine() - Processing line number: 163
  826. -* NOTICE *- 21:50:33.252 - 32855050 - FormatCmdLine::GetNextLine() - Processing line:
  827. -* NOTICE *- 21:50:33.252 - 32855068 - FormatCmdLine::GetNextLine() - Processing line number: 164
  828. -* NOTICE *- 21:50:33.252 - 32855086 - FormatCmdLine::GetNextLine() - Processing line:
  829. -* NOTICE *- 21:50:33.252 - 32855104 - FormatCmdLine::GetNextLine() - Processing line number: 165
  830. -* NOTICE *- 21:50:33.252 - 32855122 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT4"
  831. -* NOTICE *- 21:50:33.252 - 32855142 - FormatCmdLine::GetNextLine() - Processing line number: 166
  832. -* NOTICE *- 21:50:33.252 - 32855160 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT4" "AcqSystem1" 4
  833. -* NOTICE *- 21:50:33.252 - 32855182 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 166, Command Line: -CreateSpikeAcqEnt "TT4" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  834. -* NOTICE *- 21:50:33.252 - 32855458 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE TT4. Channel Count: 4
  835. -* NOTICE *- 21:50:33.253 - 32856840 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT4
  836. -* NOTICE *- 21:50:33.253 - 32856890 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT4
  837. -* NOTICE *- 21:50:33.254 - 32856932 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT4
  838. -* NOTICE *- 21:50:33.254 - 32856972 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT4
  839. -* NOTICE *- 21:50:33.254 - 32857000 - FormatCmdLine::GetNextLine() - Processing line number: 167
  840. -* NOTICE *- 21:50:33.254 - 32857020 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT4" True
  841. -* NOTICE *- 21:50:33.254 - 32857042 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 167, Command Line: -SetAcqEntProcessingEnabled "TT4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  842. -* NOTICE *- 21:50:33.254 - 32857082 - FormatCmdLine::GetNextLine() - Processing line number: 168
  843. -* NOTICE *- 21:50:33.254 - 32857102 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT4" 0 1 2 3
  844. -* NOTICE *- 21:50:33.254 - 32857130 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 168, Command Line: -SetChannelNumber "TT4" 0 1 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  845. -* NOTICE *- 21:50:33.254 - 32857180 - FormatCmdLine::GetNextLine() - Processing line number: 169
  846. -* NOTICE *- 21:50:33.254 - 32857202 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT4" 8
  847. -* NOTICE *- 21:50:33.254 - 32857224 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 169, Command Line: -SetAcqEntReference "TT4" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  848. -* NOTICE *- 21:50:33.254 - 32857292 - DRSController::SendDRSCommand() - DRS Command(b1 crs 0 0 ) about to be sent.
  849. -* NOTICE *- 21:50:33.254 - 32857364 - DRSController::SendDRSCommand() - DRS Command(b1 crs 1 0 ) about to be sent.
  850. -* NOTICE *- 21:50:33.254 - 32857430 - DRSController::SendDRSCommand() - DRS Command(b1 crs 2 0 ) about to be sent.
  851. -* NOTICE *- 21:50:33.254 - 32857496 - DRSController::SendDRSCommand() - DRS Command(b1 crs 3 0 ) about to be sent.
  852. -* NOTICE *- 21:50:33.254 - 32857552 - FormatCmdLine::GetNextLine() - Processing line number: 170
  853. -* NOTICE *- 21:50:33.254 - 32857574 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT4" 250 250 250 250
  854. -* NOTICE *- 21:50:33.254 - 32857598 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 170, Command Line: -SetInputRange "TT4" 250 250 250 250, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  855. -* NOTICE *- 21:50:33.254 - 32857660 - FormatCmdLine::GetNextLine() - Processing line number: 171
  856. -* NOTICE *- 21:50:33.254 - 32857680 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT4" 1
  857. -* NOTICE *- 21:50:33.254 - 32857702 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 171, Command Line: -SetSubSamplingInterleave "TT4" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  858. -* NOTICE *- 21:50:33.254 - 32857750 - FormatCmdLine::GetNextLine() - Processing line number: 172
  859. -* NOTICE *- 21:50:33.254 - 32857770 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT4" True
  860. -* NOTICE *- 21:50:33.254 - 32857792 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 172, Command Line: -SetDspLowCutFilterEnabled "TT4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  861. -* NOTICE *- 21:50:33.255 - 32858172 - FormatCmdLine::GetNextLine() - Processing line number: 173
  862. -* NOTICE *- 21:50:33.255 - 32858198 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT4" 600
  863. -* NOTICE *- 21:50:33.255 - 32858220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 173, Command Line: -SetDspLowCutFrequency "TT4" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  864. -* NOTICE *- 21:50:33.255 - 32858426 - FormatCmdLine::GetNextLine() - Processing line number: 174
  865. -* NOTICE *- 21:50:33.255 - 32858448 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT4" 64
  866. -* NOTICE *- 21:50:33.255 - 32858472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 174, Command Line: -SetDspLowCutNumberTaps "TT4" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  867. -* NOTICE *- 21:50:33.255 - 32858672 - FormatCmdLine::GetNextLine() - Processing line number: 175
  868. -* NOTICE *- 21:50:33.255 - 32858694 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT4" True
  869. -* NOTICE *- 21:50:33.255 - 32858718 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 175, Command Line: -SetDspHighCutFilterEnabled "TT4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  870. -* NOTICE *- 21:50:33.256 - 32858962 - FormatCmdLine::GetNextLine() - Processing line number: 176
  871. -* NOTICE *- 21:50:33.256 - 32858990 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT4" 6000
  872. -* NOTICE *- 21:50:33.256 - 32859012 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 176, Command Line: -SetDspHighCutFrequency "TT4" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  873. -* NOTICE *- 21:50:33.256 - 32859146 - FormatCmdLine::GetNextLine() - Processing line number: 177
  874. -* NOTICE *- 21:50:33.256 - 32859168 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT4" 32
  875. -* NOTICE *- 21:50:33.256 - 32859190 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 177, Command Line: -SetDspHighCutNumberTaps "TT4" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  876. -* NOTICE *- 21:50:33.256 - 32859320 - FormatCmdLine::GetNextLine() - Processing line number: 178
  877. -* NOTICE *- 21:50:33.256 - 32859342 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT4" True
  878. -* NOTICE *- 21:50:33.256 - 32859364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 178, Command Line: -SetInputInverted "TT4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  879. -* NOTICE *- 21:50:33.256 - 32859402 - FormatCmdLine::GetNextLine() - Processing line number: 179
  880. -* NOTICE *- 21:50:33.256 - 32859422 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT4" False
  881. -* NOTICE *- 21:50:33.256 - 32859444 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 179, Command Line: -SetDiskWriteEnabled "TT4" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  882. -* NOTICE *- 21:50:33.256 - 32859482 - FormatCmdLine::GetNextLine() - Processing line number: 180
  883. -* NOTICE *- 21:50:33.256 - 32859502 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT4" False
  884. -* NOTICE *- 21:50:33.256 - 32859524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 180, Command Line: -SetNetComDataBufferingEnabled "TT4" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  885. -* NOTICE *- 21:50:33.256 - 32859560 - FormatCmdLine::GetNextLine() - Processing line number: 181
  886. -* NOTICE *- 21:50:33.256 - 32859580 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT4" 3000
  887. -* NOTICE *- 21:50:33.256 - 32859602 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 181, Command Line: -SetNetComDataBufferSize "TT4" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  888. -* NOTICE *- 21:50:33.256 - 32859640 - FormatCmdLine::GetNextLine() - Processing line number: 182
  889. -* NOTICE *- 21:50:33.256 - 32859660 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT4" 65 65 65 65
  890. -* NOTICE *- 21:50:33.256 - 32859682 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 182, Command Line: -SetSpikeThreshold "TT4" 65 65 65 65, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  891. -* NOTICE *- 21:50:33.256 - 32859736 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 65 µV for sub channel 0. AE Name: TT4
  892. -* NOTICE *- 21:50:33.256 - 32859770 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 65 µV for sub channel 1. AE Name: TT4
  893. -* NOTICE *- 21:50:33.256 - 32859804 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 65 µV for sub channel 2. AE Name: TT4
  894. -* NOTICE *- 21:50:33.256 - 32859836 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 65 µV for sub channel 3. AE Name: TT4
  895. -* NOTICE *- 21:50:33.256 - 32859860 - FormatCmdLine::GetNextLine() - Processing line number: 183
  896. -* NOTICE *- 21:50:33.256 - 32859882 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT4" Threshold
  897. -* NOTICE *- 21:50:33.256 - 32859906 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 183, Command Line: -SetSpikeDetectionType "TT4" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  898. -* NOTICE *- 21:50:33.257 - 32859956 - FormatCmdLine::GetNextLine() - Processing line number: 184
  899. -* NOTICE *- 21:50:33.257 - 32859976 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT4" 0 100 160
  900. -* NOTICE *- 21:50:33.257 - 32859998 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 184, Command Line: -SetSpikeSlope "TT4" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  901. -* NOTICE *- 21:50:33.257 - 32860046 - FormatCmdLine::GetNextLine() - Processing line number: 185
  902. -* NOTICE *- 21:50:33.257 - 32860066 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT4" 1 100 160
  903. -* NOTICE *- 21:50:33.257 - 32860088 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 185, Command Line: -SetSpikeSlope "TT4" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  904. -* NOTICE *- 21:50:33.257 - 32860134 - FormatCmdLine::GetNextLine() - Processing line number: 186
  905. -* NOTICE *- 21:50:33.257 - 32860154 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT4" 2 100 160
  906. -* NOTICE *- 21:50:33.257 - 32860174 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 186, Command Line: -SetSpikeSlope "TT4" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  907. -* NOTICE *- 21:50:33.257 - 32860222 - FormatCmdLine::GetNextLine() - Processing line number: 187
  908. -* NOTICE *- 21:50:33.257 - 32860242 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT4" 3 100 160
  909. -* NOTICE *- 21:50:33.257 - 32860262 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 187, Command Line: -SetSpikeSlope "TT4" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  910. -* NOTICE *- 21:50:33.257 - 32860310 - FormatCmdLine::GetNextLine() - Processing line number: 188
  911. -* NOTICE *- 21:50:33.257 - 32860328 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT4" False
  912. -* NOTICE *- 21:50:33.257 - 32860350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 188, Command Line: -SetSpikeDualThresholding "TT4" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  913. -* NOTICE *- 21:50:33.257 - 32860394 - FormatCmdLine::GetNextLine() - Processing line number: 189
  914. -* NOTICE *- 21:50:33.257 - 32860414 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT4" 750
  915. -* NOTICE *- 21:50:33.257 - 32860436 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 189, Command Line: -SetSpikeRetriggerTime "TT4" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  916. -* NOTICE *- 21:50:33.257 - 32860476 - FormatCmdLine::GetNextLine() - Processing line number: 190
  917. -* NOTICE *- 21:50:33.257 - 32860496 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT4" 8
  918. -* NOTICE *- 21:50:33.257 - 32860518 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 190, Command Line: -SetSpikeAlignmentPoint "TT4" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  919. -* NOTICE *- 21:50:33.257 - 32860558 - FormatCmdLine::GetNextLine() - Processing line number: 191
  920. -* NOTICE *- 21:50:33.257 - 32860576 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT4" 0 True
  921. -* NOTICE *- 21:50:33.257 - 32860600 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 191, Command Line: -SetSubChannelEnabled "TT4" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  922. -* NOTICE *- 21:50:33.257 - 32860692 - FormatCmdLine::GetNextLine() - Processing line number: 192
  923. -* NOTICE *- 21:50:33.257 - 32860716 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT4" 1 True
  924. -* NOTICE *- 21:50:33.257 - 32860740 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 192, Command Line: -SetSubChannelEnabled "TT4" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  925. -* NOTICE *- 21:50:33.257 - 32860780 - FormatCmdLine::GetNextLine() - Processing line number: 193
  926. -* NOTICE *- 21:50:33.257 - 32860800 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT4" 2 True
  927. -* NOTICE *- 21:50:33.257 - 32860822 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 193, Command Line: -SetSubChannelEnabled "TT4" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  928. -* NOTICE *- 21:50:33.257 - 32860862 - FormatCmdLine::GetNextLine() - Processing line number: 194
  929. -* NOTICE *- 21:50:33.257 - 32860880 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT4" 3 True
  930. -* NOTICE *- 21:50:33.257 - 32860904 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 194, Command Line: -SetSubChannelEnabled "TT4" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  931. -* NOTICE *- 21:50:33.258 - 32860946 - FormatCmdLine::GetNextLine() - Processing line number: 195
  932. -* NOTICE *- 21:50:33.258 - 32860966 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Peak 0 0 0 31
  933. -* NOTICE *- 21:50:33.258 - 32860988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 195, Command Line: -SetWaveformFeature "TT4" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  934. -* NOTICE *- 21:50:33.258 - 32861048 - FormatCmdLine::GetNextLine() - Processing line number: 196
  935. -* NOTICE *- 21:50:33.258 - 32861068 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Peak 1 1 0 31
  936. -* NOTICE *- 21:50:33.258 - 32861090 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 196, Command Line: -SetWaveformFeature "TT4" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  937. -* NOTICE *- 21:50:33.258 - 32861146 - FormatCmdLine::GetNextLine() - Processing line number: 197
  938. -* NOTICE *- 21:50:33.258 - 32861166 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Peak 2 2 0 31
  939. -* NOTICE *- 21:50:33.258 - 32861188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 197, Command Line: -SetWaveformFeature "TT4" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  940. -* NOTICE *- 21:50:33.258 - 32861244 - FormatCmdLine::GetNextLine() - Processing line number: 198
  941. -* NOTICE *- 21:50:33.258 - 32861264 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Peak 3 3 0 31
  942. -* NOTICE *- 21:50:33.258 - 32861286 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 198, Command Line: -SetWaveformFeature "TT4" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  943. -* NOTICE *- 21:50:33.258 - 32861340 - FormatCmdLine::GetNextLine() - Processing line number: 199
  944. -* NOTICE *- 21:50:33.258 - 32861362 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Valley 4 0 0 31
  945. -* NOTICE *- 21:50:33.258 - 32861382 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 199, Command Line: -SetWaveformFeature "TT4" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  946. -* NOTICE *- 21:50:33.258 - 32861444 - FormatCmdLine::GetNextLine() - Processing line number: 200
  947. -* NOTICE *- 21:50:33.258 - 32861466 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Valley 5 1 0 31
  948. -* NOTICE *- 21:50:33.258 - 32861488 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 200, Command Line: -SetWaveformFeature "TT4" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  949. -* NOTICE *- 21:50:33.258 - 32861546 - FormatCmdLine::GetNextLine() - Processing line number: 201
  950. -* NOTICE *- 21:50:33.258 - 32861566 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Valley 6 2 0 31
  951. -* NOTICE *- 21:50:33.258 - 32861588 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 201, Command Line: -SetWaveformFeature "TT4" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  952. -* NOTICE *- 21:50:33.258 - 32861642 - FormatCmdLine::GetNextLine() - Processing line number: 202
  953. -* NOTICE *- 21:50:33.258 - 32861664 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT4" Valley 7 3 0 31
  954. -* NOTICE *- 21:50:33.258 - 32861686 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 202, Command Line: -SetWaveformFeature "TT4" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  955. -* NOTICE *- 21:50:33.258 - 32861742 - FormatCmdLine::GetNextLine() - Processing line number: 203
  956. -* NOTICE *- 21:50:33.258 - 32861762 - FormatCmdLine::GetNextLine() - Processing line:
  957. -* NOTICE *- 21:50:33.258 - 32861780 - FormatCmdLine::GetNextLine() - Processing line number: 204
  958. -* NOTICE *- 21:50:33.258 - 32861798 - FormatCmdLine::GetNextLine() - Processing line:
  959. -* NOTICE *- 21:50:33.258 - 32861816 - FormatCmdLine::GetNextLine() - Processing line number: 205
  960. -* NOTICE *- 21:50:33.258 - 32861834 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT5"
  961. -* NOTICE *- 21:50:33.258 - 32861854 - FormatCmdLine::GetNextLine() - Processing line number: 206
  962. -* NOTICE *- 21:50:33.258 - 32861872 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT5" "AcqSystem1" 4
  963. -* NOTICE *- 21:50:33.258 - 32861894 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 206, Command Line: -CreateSpikeAcqEnt "TT5" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  964. -* NOTICE *- 21:50:33.259 - 32862186 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE TT5. Channel Count: 4
  965. -* NOTICE *- 21:50:33.260 - 32863590 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT5
  966. -* NOTICE *- 21:50:33.260 - 32863640 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT5
  967. -* NOTICE *- 21:50:33.260 - 32863680 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT5
  968. -* NOTICE *- 21:50:33.260 - 32863720 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT5
  969. -* NOTICE *- 21:50:33.260 - 32863750 - FormatCmdLine::GetNextLine() - Processing line number: 207
  970. -* NOTICE *- 21:50:33.260 - 32863768 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT5" True
  971. -* NOTICE *- 21:50:33.260 - 32863792 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 207, Command Line: -SetAcqEntProcessingEnabled "TT5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  972. -* NOTICE *- 21:50:33.260 - 32863832 - FormatCmdLine::GetNextLine() - Processing line number: 208
  973. -* NOTICE *- 21:50:33.260 - 32863850 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT5" 19 18 17 16
  974. -* NOTICE *- 21:50:33.260 - 32863874 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 208, Command Line: -SetChannelNumber "TT5" 19 18 17 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  975. -* NOTICE *- 21:50:33.261 - 32863956 - FormatCmdLine::GetNextLine() - Processing line number: 209
  976. -* NOTICE *- 21:50:33.261 - 32863980 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT5" 8
  977. -* NOTICE *- 21:50:33.261 - 32864002 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 209, Command Line: -SetAcqEntReference "TT5" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  978. -* NOTICE *- 21:50:33.261 - 32864074 - DRSController::SendDRSCommand() - DRS Command(b1 crs 19 0 ) about to be sent.
  979. -* NOTICE *- 21:50:33.261 - 32864146 - DRSController::SendDRSCommand() - DRS Command(b1 crs 18 0 ) about to be sent.
  980. -* NOTICE *- 21:50:33.261 - 32864212 - DRSController::SendDRSCommand() - DRS Command(b1 crs 17 0 ) about to be sent.
  981. -* NOTICE *- 21:50:33.261 - 32864278 - DRSController::SendDRSCommand() - DRS Command(b1 crs 16 0 ) about to be sent.
  982. -* NOTICE *- 21:50:33.261 - 32864330 - FormatCmdLine::GetNextLine() - Processing line number: 210
  983. -* NOTICE *- 21:50:33.261 - 32864352 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT5" 200 200 200 200
  984. -* NOTICE *- 21:50:33.261 - 32864376 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 210, Command Line: -SetInputRange "TT5" 200 200 200 200, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  985. -* NOTICE *- 21:50:33.261 - 32864436 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 0. AE Name: TT5
  986. -* NOTICE *- 21:50:33.261 - 32864476 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 1. AE Name: TT5
  987. -* NOTICE *- 21:50:33.261 - 32864516 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 2. AE Name: TT5
  988. -* NOTICE *- 21:50:33.261 - 32864554 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 3. AE Name: TT5
  989. -* NOTICE *- 21:50:33.261 - 32864578 - FormatCmdLine::GetNextLine() - Processing line number: 211
  990. -* NOTICE *- 21:50:33.261 - 32864598 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT5" 1
  991. -* NOTICE *- 21:50:33.261 - 32864620 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 211, Command Line: -SetSubSamplingInterleave "TT5" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  992. -* NOTICE *- 21:50:33.261 - 32864668 - FormatCmdLine::GetNextLine() - Processing line number: 212
  993. -* NOTICE *- 21:50:33.261 - 32864688 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT5" True
  994. -* NOTICE *- 21:50:33.261 - 32864710 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 212, Command Line: -SetDspLowCutFilterEnabled "TT5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  995. -* NOTICE *- 21:50:33.262 - 32865050 - FormatCmdLine::GetNextLine() - Processing line number: 213
  996. -* NOTICE *- 21:50:33.262 - 32865076 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT5" 600
  997. -* NOTICE *- 21:50:33.262 - 32865098 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 213, Command Line: -SetDspLowCutFrequency "TT5" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  998. -* NOTICE *- 21:50:33.262 - 32865306 - FormatCmdLine::GetNextLine() - Processing line number: 214
  999. -* NOTICE *- 21:50:33.262 - 32865328 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT5" 64
  1000. -* NOTICE *- 21:50:33.262 - 32865350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 214, Command Line: -SetDspLowCutNumberTaps "TT5" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1001. -* NOTICE *- 21:50:33.262 - 32865558 - FormatCmdLine::GetNextLine() - Processing line number: 215
  1002. -* NOTICE *- 21:50:33.262 - 32865582 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT5" True
  1003. -* NOTICE *- 21:50:33.262 - 32865606 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 215, Command Line: -SetDspHighCutFilterEnabled "TT5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1004. -* NOTICE *- 21:50:33.262 - 32865842 - FormatCmdLine::GetNextLine() - Processing line number: 216
  1005. -* NOTICE *- 21:50:33.262 - 32865866 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT5" 6000
  1006. -* NOTICE *- 21:50:33.262 - 32865890 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 216, Command Line: -SetDspHighCutFrequency "TT5" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1007. -* NOTICE *- 21:50:33.263 - 32866026 - FormatCmdLine::GetNextLine() - Processing line number: 217
  1008. -* NOTICE *- 21:50:33.263 - 32866050 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT5" 32
  1009. -* NOTICE *- 21:50:33.263 - 32866072 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 217, Command Line: -SetDspHighCutNumberTaps "TT5" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1010. -* NOTICE *- 21:50:33.263 - 32866202 - FormatCmdLine::GetNextLine() - Processing line number: 218
  1011. -* NOTICE *- 21:50:33.263 - 32866224 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT5" True
  1012. -* NOTICE *- 21:50:33.263 - 32866246 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 218, Command Line: -SetInputInverted "TT5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1013. -* NOTICE *- 21:50:33.263 - 32866284 - FormatCmdLine::GetNextLine() - Processing line number: 219
  1014. -* NOTICE *- 21:50:33.263 - 32866304 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT5" True
  1015. -* NOTICE *- 21:50:33.263 - 32866326 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 219, Command Line: -SetDiskWriteEnabled "TT5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1016. -* NOTICE *- 21:50:33.263 - 32866364 - FormatCmdLine::GetNextLine() - Processing line number: 220
  1017. -* NOTICE *- 21:50:33.263 - 32866384 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT5" False
  1018. -* NOTICE *- 21:50:33.263 - 32866406 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 220, Command Line: -SetNetComDataBufferingEnabled "TT5" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1019. -* NOTICE *- 21:50:33.263 - 32866444 - FormatCmdLine::GetNextLine() - Processing line number: 221
  1020. -* NOTICE *- 21:50:33.263 - 32866464 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT5" 3000
  1021. -* NOTICE *- 21:50:33.263 - 32866486 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 221, Command Line: -SetNetComDataBufferSize "TT5" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1022. -* NOTICE *- 21:50:33.263 - 32866524 - FormatCmdLine::GetNextLine() - Processing line number: 222
  1023. -* NOTICE *- 21:50:33.263 - 32866544 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT5" 50 50 50 50
  1024. -* NOTICE *- 21:50:33.263 - 32866566 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 222, Command Line: -SetSpikeThreshold "TT5" 50 50 50 50, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1025. -* NOTICE *- 21:50:33.263 - 32866620 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 50 µV for sub channel 0. AE Name: TT5
  1026. -* NOTICE *- 21:50:33.263 - 32866666 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 50 µV for sub channel 1. AE Name: TT5
  1027. -* NOTICE *- 21:50:33.263 - 32866704 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 50 µV for sub channel 2. AE Name: TT5
  1028. -* NOTICE *- 21:50:33.263 - 32866738 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 50 µV for sub channel 3. AE Name: TT5
  1029. -* NOTICE *- 21:50:33.263 - 32866762 - FormatCmdLine::GetNextLine() - Processing line number: 223
  1030. -* NOTICE *- 21:50:33.263 - 32866782 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT5" Threshold
  1031. -* NOTICE *- 21:50:33.263 - 32866804 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 223, Command Line: -SetSpikeDetectionType "TT5" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1032. -* NOTICE *- 21:50:33.263 - 32866850 - FormatCmdLine::GetNextLine() - Processing line number: 224
  1033. -* NOTICE *- 21:50:33.263 - 32866870 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT5" 0 100 160
  1034. -* NOTICE *- 21:50:33.263 - 32866892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 224, Command Line: -SetSpikeSlope "TT5" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1035. -* NOTICE *- 21:50:33.264 - 32866944 - FormatCmdLine::GetNextLine() - Processing line number: 225
  1036. -* NOTICE *- 21:50:33.264 - 32866966 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT5" 1 100 160
  1037. -* NOTICE *- 21:50:33.264 - 32866988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 225, Command Line: -SetSpikeSlope "TT5" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1038. -* NOTICE *- 21:50:33.264 - 32867038 - FormatCmdLine::GetNextLine() - Processing line number: 226
  1039. -* NOTICE *- 21:50:33.264 - 32867056 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT5" 2 100 160
  1040. -* NOTICE *- 21:50:33.264 - 32867078 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 226, Command Line: -SetSpikeSlope "TT5" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1041. -* NOTICE *- 21:50:33.264 - 32867126 - FormatCmdLine::GetNextLine() - Processing line number: 227
  1042. -* NOTICE *- 21:50:33.264 - 32867146 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT5" 3 100 160
  1043. -* NOTICE *- 21:50:33.264 - 32867166 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 227, Command Line: -SetSpikeSlope "TT5" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1044. -* NOTICE *- 21:50:33.264 - 32867214 - FormatCmdLine::GetNextLine() - Processing line number: 228
  1045. -* NOTICE *- 21:50:33.264 - 32867234 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT5" False
  1046. -* NOTICE *- 21:50:33.264 - 32867256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 228, Command Line: -SetSpikeDualThresholding "TT5" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1047. -* NOTICE *- 21:50:33.264 - 32867300 - FormatCmdLine::GetNextLine() - Processing line number: 229
  1048. -* NOTICE *- 21:50:33.264 - 32867320 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT5" 750
  1049. -* NOTICE *- 21:50:33.264 - 32867342 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 229, Command Line: -SetSpikeRetriggerTime "TT5" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1050. -* NOTICE *- 21:50:33.264 - 32867382 - FormatCmdLine::GetNextLine() - Processing line number: 230
  1051. -* NOTICE *- 21:50:33.264 - 32867402 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT5" 8
  1052. -* NOTICE *- 21:50:33.264 - 32867424 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 230, Command Line: -SetSpikeAlignmentPoint "TT5" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1053. -* NOTICE *- 21:50:33.264 - 32867468 - FormatCmdLine::GetNextLine() - Processing line number: 231
  1054. -* NOTICE *- 21:50:33.264 - 32867490 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT5" 0 True
  1055. -* NOTICE *- 21:50:33.264 - 32867512 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 231, Command Line: -SetSubChannelEnabled "TT5" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1056. -* NOTICE *- 21:50:33.264 - 32867554 - FormatCmdLine::GetNextLine() - Processing line number: 232
  1057. -* NOTICE *- 21:50:33.264 - 32867574 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT5" 1 True
  1058. -* NOTICE *- 21:50:33.264 - 32867596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 232, Command Line: -SetSubChannelEnabled "TT5" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1059. -* NOTICE *- 21:50:33.264 - 32867634 - FormatCmdLine::GetNextLine() - Processing line number: 233
  1060. -* NOTICE *- 21:50:33.264 - 32867654 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT5" 2 True
  1061. -* NOTICE *- 21:50:33.264 - 32867676 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 233, Command Line: -SetSubChannelEnabled "TT5" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1062. -* NOTICE *- 21:50:33.264 - 32867716 - FormatCmdLine::GetNextLine() - Processing line number: 234
  1063. -* NOTICE *- 21:50:33.264 - 32867736 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT5" 3 True
  1064. -* NOTICE *- 21:50:33.264 - 32867890 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 234, Command Line: -SetSubChannelEnabled "TT5" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1065. -* NOTICE *- 21:50:33.265 - 32867938 - FormatCmdLine::GetNextLine() - Processing line number: 235
  1066. -* NOTICE *- 21:50:33.265 - 32867960 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Peak 0 0 0 31
  1067. -* NOTICE *- 21:50:33.265 - 32867982 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 235, Command Line: -SetWaveformFeature "TT5" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1068. -* NOTICE *- 21:50:33.265 - 32868040 - FormatCmdLine::GetNextLine() - Processing line number: 236
  1069. -* NOTICE *- 21:50:33.265 - 32868062 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Peak 1 1 0 31
  1070. -* NOTICE *- 21:50:33.265 - 32868086 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 236, Command Line: -SetWaveformFeature "TT5" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1071. -* NOTICE *- 21:50:33.265 - 32868142 - FormatCmdLine::GetNextLine() - Processing line number: 237
  1072. -* NOTICE *- 21:50:33.265 - 32868164 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Peak 2 2 0 31
  1073. -* NOTICE *- 21:50:33.265 - 32868188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 237, Command Line: -SetWaveformFeature "TT5" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1074. -* NOTICE *- 21:50:33.265 - 32868244 - FormatCmdLine::GetNextLine() - Processing line number: 238
  1075. -* NOTICE *- 21:50:33.265 - 32868266 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Peak 3 3 0 31
  1076. -* NOTICE *- 21:50:33.265 - 32868290 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 238, Command Line: -SetWaveformFeature "TT5" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1077. -* NOTICE *- 21:50:33.265 - 32868350 - FormatCmdLine::GetNextLine() - Processing line number: 239
  1078. -* NOTICE *- 21:50:33.265 - 32868374 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Valley 4 0 0 31
  1079. -* NOTICE *- 21:50:33.265 - 32868398 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 239, Command Line: -SetWaveformFeature "TT5" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1080. -* NOTICE *- 21:50:33.272 - 32875736 - FormatCmdLine::GetNextLine() - Processing line number: 240
  1081. -* NOTICE *- 21:50:33.272 - 32875760 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Valley 5 1 0 31
  1082. -* NOTICE *- 21:50:33.272 - 32875786 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 240, Command Line: -SetWaveformFeature "TT5" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1083. -* NOTICE *- 21:50:33.272 - 32875846 - FormatCmdLine::GetNextLine() - Processing line number: 241
  1084. -* NOTICE *- 21:50:33.272 - 32875868 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Valley 6 2 0 31
  1085. -* NOTICE *- 21:50:33.272 - 32875892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 241, Command Line: -SetWaveformFeature "TT5" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1086. -* NOTICE *- 21:50:33.273 - 32875954 - FormatCmdLine::GetNextLine() - Processing line number: 242
  1087. -* NOTICE *- 21:50:33.273 - 32875976 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT5" Valley 7 3 0 31
  1088. -* NOTICE *- 21:50:33.273 - 32875998 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 242, Command Line: -SetWaveformFeature "TT5" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1089. -* NOTICE *- 21:50:33.273 - 32876054 - FormatCmdLine::GetNextLine() - Processing line number: 243
  1090. -* NOTICE *- 21:50:33.273 - 32876074 - FormatCmdLine::GetNextLine() - Processing line:
  1091. -* NOTICE *- 21:50:33.273 - 32876094 - FormatCmdLine::GetNextLine() - Processing line number: 244
  1092. -* NOTICE *- 21:50:33.273 - 32876110 - FormatCmdLine::GetNextLine() - Processing line:
  1093. -* NOTICE *- 21:50:33.273 - 32876130 - FormatCmdLine::GetNextLine() - Processing line number: 245
  1094. -* NOTICE *- 21:50:33.273 - 32876148 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT6"
  1095. -* NOTICE *- 21:50:33.273 - 32876168 - FormatCmdLine::GetNextLine() - Processing line number: 246
  1096. -* NOTICE *- 21:50:33.273 - 32876186 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT6" "AcqSystem1" 4
  1097. -* NOTICE *- 21:50:33.273 - 32876208 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 246, Command Line: -CreateSpikeAcqEnt "TT6" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1098. -* NOTICE *- 21:50:33.273 - 32876482 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE TT6. Channel Count: 4
  1099. -* NOTICE *- 21:50:33.275 - 32877930 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT6
  1100. -* NOTICE *- 21:50:33.275 - 32877978 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT6
  1101. -* NOTICE *- 21:50:33.275 - 32878018 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT6
  1102. -* NOTICE *- 21:50:33.275 - 32878054 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT6
  1103. -* NOTICE *- 21:50:33.275 - 32878084 - FormatCmdLine::GetNextLine() - Processing line number: 247
  1104. -* NOTICE *- 21:50:33.275 - 32878102 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT6" True
  1105. -* NOTICE *- 21:50:33.275 - 32878126 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 247, Command Line: -SetAcqEntProcessingEnabled "TT6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1106. -* NOTICE *- 21:50:33.275 - 32878170 - FormatCmdLine::GetNextLine() - Processing line number: 248
  1107. -* NOTICE *- 21:50:33.275 - 32878192 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT6" 4 5 6 7
  1108. -* NOTICE *- 21:50:33.275 - 32878214 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 248, Command Line: -SetChannelNumber "TT6" 4 5 6 7, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1109. -* NOTICE *- 21:50:33.275 - 32878286 - FormatCmdLine::GetNextLine() - Processing line number: 249
  1110. -* NOTICE *- 21:50:33.275 - 32878308 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT6" 8
  1111. -* NOTICE *- 21:50:33.275 - 32878330 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 249, Command Line: -SetAcqEntReference "TT6" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1112. -* NOTICE *- 21:50:33.275 - 32878400 - DRSController::SendDRSCommand() - DRS Command(b1 crs 4 0 ) about to be sent.
  1113. -* NOTICE *- 21:50:33.275 - 32878472 - DRSController::SendDRSCommand() - DRS Command(b1 crs 5 0 ) about to be sent.
  1114. -* NOTICE *- 21:50:33.275 - 32878536 - DRSController::SendDRSCommand() - DRS Command(b1 crs 6 0 ) about to be sent.
  1115. -* NOTICE *- 21:50:33.275 - 32878600 - DRSController::SendDRSCommand() - DRS Command(b1 crs 7 0 ) about to be sent.
  1116. -* NOTICE *- 21:50:33.275 - 32878652 - FormatCmdLine::GetNextLine() - Processing line number: 250
  1117. -* NOTICE *- 21:50:33.275 - 32878674 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT6" 250 250 250 250
  1118. -* NOTICE *- 21:50:33.275 - 32878698 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 250, Command Line: -SetInputRange "TT6" 250 250 250 250, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1119. -* NOTICE *- 21:50:33.275 - 32878760 - FormatCmdLine::GetNextLine() - Processing line number: 251
  1120. -* NOTICE *- 21:50:33.275 - 32878780 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT6" 1
  1121. -* NOTICE *- 21:50:33.275 - 32878802 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 251, Command Line: -SetSubSamplingInterleave "TT6" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1122. -* NOTICE *- 21:50:33.275 - 32878850 - FormatCmdLine::GetNextLine() - Processing line number: 252
  1123. -* NOTICE *- 21:50:33.275 - 32878870 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT6" True
  1124. -* NOTICE *- 21:50:33.275 - 32878892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 252, Command Line: -SetDspLowCutFilterEnabled "TT6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1125. -* NOTICE *- 21:50:33.276 - 32879232 - FormatCmdLine::GetNextLine() - Processing line number: 253
  1126. -* NOTICE *- 21:50:33.276 - 32879258 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT6" 600
  1127. -* NOTICE *- 21:50:33.276 - 32879282 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 253, Command Line: -SetDspLowCutFrequency "TT6" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1128. -* NOTICE *- 21:50:33.276 - 32879490 - FormatCmdLine::GetNextLine() - Processing line number: 254
  1129. -* NOTICE *- 21:50:33.276 - 32879512 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT6" 64
  1130. -* NOTICE *- 21:50:33.276 - 32879534 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 254, Command Line: -SetDspLowCutNumberTaps "TT6" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1131. -* NOTICE *- 21:50:33.276 - 32879740 - FormatCmdLine::GetNextLine() - Processing line number: 255
  1132. -* NOTICE *- 21:50:33.276 - 32879764 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT6" True
  1133. -* NOTICE *- 21:50:33.276 - 32879788 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 255, Command Line: -SetDspHighCutFilterEnabled "TT6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1134. -* NOTICE *- 21:50:33.277 - 32880016 - FormatCmdLine::GetNextLine() - Processing line number: 256
  1135. -* NOTICE *- 21:50:33.277 - 32880040 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT6" 6000
  1136. -* NOTICE *- 21:50:33.277 - 32880062 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 256, Command Line: -SetDspHighCutFrequency "TT6" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1137. -* NOTICE *- 21:50:33.277 - 32880196 - FormatCmdLine::GetNextLine() - Processing line number: 257
  1138. -* NOTICE *- 21:50:33.277 - 32880218 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT6" 32
  1139. -* NOTICE *- 21:50:33.277 - 32880240 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 257, Command Line: -SetDspHighCutNumberTaps "TT6" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1140. -* NOTICE *- 21:50:33.277 - 32880370 - FormatCmdLine::GetNextLine() - Processing line number: 258
  1141. -* NOTICE *- 21:50:33.277 - 32880392 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT6" True
  1142. -* NOTICE *- 21:50:33.277 - 32880414 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 258, Command Line: -SetInputInverted "TT6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1143. -* NOTICE *- 21:50:33.277 - 32880454 - FormatCmdLine::GetNextLine() - Processing line number: 259
  1144. -* NOTICE *- 21:50:33.277 - 32880474 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT6" True
  1145. -* NOTICE *- 21:50:33.277 - 32880496 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 259, Command Line: -SetDiskWriteEnabled "TT6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1146. -* NOTICE *- 21:50:33.277 - 32880534 - FormatCmdLine::GetNextLine() - Processing line number: 260
  1147. -* NOTICE *- 21:50:33.277 - 32880554 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT6" False
  1148. -* NOTICE *- 21:50:33.277 - 32880576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 260, Command Line: -SetNetComDataBufferingEnabled "TT6" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1149. -* NOTICE *- 21:50:33.277 - 32880614 - FormatCmdLine::GetNextLine() - Processing line number: 261
  1150. -* NOTICE *- 21:50:33.277 - 32880634 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT6" 3000
  1151. -* NOTICE *- 21:50:33.277 - 32880656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 261, Command Line: -SetNetComDataBufferSize "TT6" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1152. -* NOTICE *- 21:50:33.277 - 32880694 - FormatCmdLine::GetNextLine() - Processing line number: 262
  1153. -* NOTICE *- 21:50:33.277 - 32880714 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT6" 40 40 40 40
  1154. -* NOTICE *- 21:50:33.277 - 32880736 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 262, Command Line: -SetSpikeThreshold "TT6" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1155. -* NOTICE *- 21:50:33.277 - 32880790 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT6
  1156. -* NOTICE *- 21:50:33.277 - 32880826 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT6
  1157. -* NOTICE *- 21:50:33.277 - 32880864 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT6
  1158. -* NOTICE *- 21:50:33.277 - 32880900 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT6
  1159. -* NOTICE *- 21:50:33.278 - 32880926 - FormatCmdLine::GetNextLine() - Processing line number: 263
  1160. -* NOTICE *- 21:50:33.278 - 32880946 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT6" Threshold
  1161. -* NOTICE *- 21:50:33.278 - 32880970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 263, Command Line: -SetSpikeDetectionType "TT6" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1162. -* NOTICE *- 21:50:33.278 - 32881016 - FormatCmdLine::GetNextLine() - Processing line number: 264
  1163. -* NOTICE *- 21:50:33.278 - 32881036 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT6" 0 100 160
  1164. -* NOTICE *- 21:50:33.278 - 32881058 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 264, Command Line: -SetSpikeSlope "TT6" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1165. -* NOTICE *- 21:50:33.278 - 32881106 - FormatCmdLine::GetNextLine() - Processing line number: 265
  1166. -* NOTICE *- 21:50:33.278 - 32881126 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT6" 1 100 160
  1167. -* NOTICE *- 21:50:33.278 - 32881148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 265, Command Line: -SetSpikeSlope "TT6" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1168. -* NOTICE *- 21:50:33.278 - 32881196 - FormatCmdLine::GetNextLine() - Processing line number: 266
  1169. -* NOTICE *- 21:50:33.278 - 32881216 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT6" 2 100 160
  1170. -* NOTICE *- 21:50:33.278 - 32881238 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 266, Command Line: -SetSpikeSlope "TT6" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1171. -* NOTICE *- 21:50:33.278 - 32881284 - FormatCmdLine::GetNextLine() - Processing line number: 267
  1172. -* NOTICE *- 21:50:33.278 - 32881304 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT6" 3 100 160
  1173. -* NOTICE *- 21:50:33.278 - 32881326 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 267, Command Line: -SetSpikeSlope "TT6" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1174. -* NOTICE *- 21:50:33.278 - 32881374 - FormatCmdLine::GetNextLine() - Processing line number: 268
  1175. -* NOTICE *- 21:50:33.278 - 32881394 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT6" False
  1176. -* NOTICE *- 21:50:33.278 - 32881416 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 268, Command Line: -SetSpikeDualThresholding "TT6" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1177. -* NOTICE *- 21:50:33.278 - 32881460 - FormatCmdLine::GetNextLine() - Processing line number: 269
  1178. -* NOTICE *- 21:50:33.278 - 32881480 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT6" 750
  1179. -* NOTICE *- 21:50:33.278 - 32881502 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 269, Command Line: -SetSpikeRetriggerTime "TT6" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1180. -* NOTICE *- 21:50:33.278 - 32881542 - FormatCmdLine::GetNextLine() - Processing line number: 270
  1181. -* NOTICE *- 21:50:33.278 - 32881562 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT6" 8
  1182. -* NOTICE *- 21:50:33.278 - 32881584 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 270, Command Line: -SetSpikeAlignmentPoint "TT6" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1183. -* NOTICE *- 21:50:33.278 - 32881628 - FormatCmdLine::GetNextLine() - Processing line number: 271
  1184. -* NOTICE *- 21:50:33.278 - 32881650 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT6" 0 True
  1185. -* NOTICE *- 21:50:33.278 - 32881672 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 271, Command Line: -SetSubChannelEnabled "TT6" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1186. -* NOTICE *- 21:50:33.278 - 32881712 - FormatCmdLine::GetNextLine() - Processing line number: 272
  1187. -* NOTICE *- 21:50:33.278 - 32881732 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT6" 1 True
  1188. -* NOTICE *- 21:50:33.278 - 32881754 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 272, Command Line: -SetSubChannelEnabled "TT6" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1189. -* NOTICE *- 21:50:33.278 - 32881794 - FormatCmdLine::GetNextLine() - Processing line number: 273
  1190. -* NOTICE *- 21:50:33.278 - 32881812 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT6" 2 True
  1191. -* NOTICE *- 21:50:33.278 - 32881834 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 273, Command Line: -SetSubChannelEnabled "TT6" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1192. -* NOTICE *- 21:50:33.278 - 32881874 - FormatCmdLine::GetNextLine() - Processing line number: 274
  1193. -* NOTICE *- 21:50:33.278 - 32881894 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT6" 3 True
  1194. -* NOTICE *- 21:50:33.278 - 32881920 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 274, Command Line: -SetSubChannelEnabled "TT6" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1195. -* NOTICE *- 21:50:33.279 - 32881962 - FormatCmdLine::GetNextLine() - Processing line number: 275
  1196. -* NOTICE *- 21:50:33.279 - 32881982 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Peak 0 0 0 31
  1197. -* NOTICE *- 21:50:33.279 - 32882004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 275, Command Line: -SetWaveformFeature "TT6" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1198. -* NOTICE *- 21:50:33.279 - 32882062 - FormatCmdLine::GetNextLine() - Processing line number: 276
  1199. -* NOTICE *- 21:50:33.279 - 32882084 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Peak 1 1 0 31
  1200. -* NOTICE *- 21:50:33.279 - 32882106 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 276, Command Line: -SetWaveformFeature "TT6" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1201. -* NOTICE *- 21:50:33.279 - 32882162 - FormatCmdLine::GetNextLine() - Processing line number: 277
  1202. -* NOTICE *- 21:50:33.279 - 32882182 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Peak 2 2 0 31
  1203. -* NOTICE *- 21:50:33.279 - 32882204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 277, Command Line: -SetWaveformFeature "TT6" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1204. -* NOTICE *- 21:50:33.279 - 32882260 - FormatCmdLine::GetNextLine() - Processing line number: 278
  1205. -* NOTICE *- 21:50:33.279 - 32882282 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Peak 3 3 0 31
  1206. -* NOTICE *- 21:50:33.279 - 32882306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 278, Command Line: -SetWaveformFeature "TT6" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1207. -* NOTICE *- 21:50:33.279 - 32882364 - FormatCmdLine::GetNextLine() - Processing line number: 279
  1208. -* NOTICE *- 21:50:33.279 - 32882390 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Valley 4 0 0 31
  1209. -* NOTICE *- 21:50:33.279 - 32882414 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 279, Command Line: -SetWaveformFeature "TT6" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1210. -* NOTICE *- 21:50:33.279 - 32882470 - FormatCmdLine::GetNextLine() - Processing line number: 280
  1211. -* NOTICE *- 21:50:33.279 - 32882490 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Valley 5 1 0 31
  1212. -* NOTICE *- 21:50:33.279 - 32882512 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 280, Command Line: -SetWaveformFeature "TT6" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1213. -* NOTICE *- 21:50:33.279 - 32882568 - FormatCmdLine::GetNextLine() - Processing line number: 281
  1214. -* NOTICE *- 21:50:33.279 - 32882588 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Valley 6 2 0 31
  1215. -* NOTICE *- 21:50:33.279 - 32882610 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 281, Command Line: -SetWaveformFeature "TT6" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1216. -* NOTICE *- 21:50:33.279 - 32882666 - FormatCmdLine::GetNextLine() - Processing line number: 282
  1217. -* NOTICE *- 21:50:33.279 - 32882686 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT6" Valley 7 3 0 31
  1218. -* NOTICE *- 21:50:33.279 - 32882708 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 282, Command Line: -SetWaveformFeature "TT6" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1219. -* NOTICE *- 21:50:33.279 - 32882764 - FormatCmdLine::GetNextLine() - Processing line number: 283
  1220. -* NOTICE *- 21:50:33.279 - 32882784 - FormatCmdLine::GetNextLine() - Processing line:
  1221. -* NOTICE *- 21:50:33.279 - 32882802 - FormatCmdLine::GetNextLine() - Processing line number: 284
  1222. -* NOTICE *- 21:50:33.279 - 32882820 - FormatCmdLine::GetNextLine() - Processing line:
  1223. -* NOTICE *- 21:50:33.279 - 32882838 - FormatCmdLine::GetNextLine() - Processing line number: 285
  1224. -* NOTICE *- 21:50:33.279 - 32882856 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT7"
  1225. -* NOTICE *- 21:50:33.279 - 32882876 - FormatCmdLine::GetNextLine() - Processing line number: 286
  1226. -* NOTICE *- 21:50:33.279 - 32882894 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT7" "AcqSystem1" 4
  1227. -* NOTICE *- 21:50:33.279 - 32882916 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 286, Command Line: -CreateSpikeAcqEnt "TT7" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1228. -* NOTICE *- 21:50:33.280 - 32883188 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE TT7. Channel Count: 4
  1229. -* NOTICE *- 21:50:33.281 - 32884564 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT7
  1230. -* NOTICE *- 21:50:33.281 - 32884612 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT7
  1231. -* NOTICE *- 21:50:33.281 - 32884650 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT7
  1232. -* NOTICE *- 21:50:33.281 - 32884688 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT7
  1233. -* NOTICE *- 21:50:33.281 - 32884716 - FormatCmdLine::GetNextLine() - Processing line number: 287
  1234. -* NOTICE *- 21:50:33.281 - 32884736 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT7" True
  1235. -* NOTICE *- 21:50:33.281 - 32884758 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 287, Command Line: -SetAcqEntProcessingEnabled "TT7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1236. -* NOTICE *- 21:50:33.281 - 32884802 - FormatCmdLine::GetNextLine() - Processing line number: 288
  1237. -* NOTICE *- 21:50:33.281 - 32884824 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT7" 8 9 10 11
  1238. -* NOTICE *- 21:50:33.281 - 32884848 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 288, Command Line: -SetChannelNumber "TT7" 8 9 10 11, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1239. -* NOTICE *- 21:50:33.282 - 32884924 - FormatCmdLine::GetNextLine() - Processing line number: 289
  1240. -* NOTICE *- 21:50:33.282 - 32884946 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT7" 8
  1241. -* NOTICE *- 21:50:33.282 - 32884970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 289, Command Line: -SetAcqEntReference "TT7" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1242. -* NOTICE *- 21:50:33.282 - 32885040 - DRSController::SendDRSCommand() - DRS Command(b1 crs 8 0 ) about to be sent.
  1243. -* NOTICE *- 21:50:33.282 - 32885110 - DRSController::SendDRSCommand() - DRS Command(b1 crs 9 0 ) about to be sent.
  1244. -* NOTICE *- 21:50:33.282 - 32885176 - DRSController::SendDRSCommand() - DRS Command(b1 crs 10 0 ) about to be sent.
  1245. -* NOTICE *- 21:50:33.282 - 32885240 - DRSController::SendDRSCommand() - DRS Command(b1 crs 11 0 ) about to be sent.
  1246. -* NOTICE *- 21:50:33.282 - 32885290 - FormatCmdLine::GetNextLine() - Processing line number: 290
  1247. -* NOTICE *- 21:50:33.282 - 32885314 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT7" 150 150 150 150
  1248. -* NOTICE *- 21:50:33.282 - 32885338 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 290, Command Line: -SetInputRange "TT7" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1249. -* NOTICE *- 21:50:33.282 - 32885396 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT7
  1250. -* NOTICE *- 21:50:33.282 - 32885436 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT7
  1251. -* NOTICE *- 21:50:33.282 - 32885474 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT7
  1252. -* NOTICE *- 21:50:33.282 - 32885510 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT7
  1253. -* NOTICE *- 21:50:33.282 - 32885534 - FormatCmdLine::GetNextLine() - Processing line number: 291
  1254. -* NOTICE *- 21:50:33.282 - 32885552 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT7" 1
  1255. -* NOTICE *- 21:50:33.282 - 32885576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 291, Command Line: -SetSubSamplingInterleave "TT7" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1256. -* NOTICE *- 21:50:33.282 - 32885622 - FormatCmdLine::GetNextLine() - Processing line number: 292
  1257. -* NOTICE *- 21:50:33.282 - 32885644 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT7" True
  1258. -* NOTICE *- 21:50:33.282 - 32885666 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 292, Command Line: -SetDspLowCutFilterEnabled "TT7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1259. -* NOTICE *- 21:50:33.283 - 32886004 - FormatCmdLine::GetNextLine() - Processing line number: 293
  1260. -* NOTICE *- 21:50:33.283 - 32886030 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT7" 600
  1261. -* NOTICE *- 21:50:33.283 - 32886054 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 293, Command Line: -SetDspLowCutFrequency "TT7" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1262. -* NOTICE *- 21:50:33.283 - 32886264 - FormatCmdLine::GetNextLine() - Processing line number: 294
  1263. -* NOTICE *- 21:50:33.283 - 32886290 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT7" 64
  1264. -* NOTICE *- 21:50:33.283 - 32886312 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 294, Command Line: -SetDspLowCutNumberTaps "TT7" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1265. -* NOTICE *- 21:50:33.283 - 32886516 - FormatCmdLine::GetNextLine() - Processing line number: 295
  1266. -* NOTICE *- 21:50:33.283 - 32886538 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT7" True
  1267. -* NOTICE *- 21:50:33.283 - 32886560 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 295, Command Line: -SetDspHighCutFilterEnabled "TT7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1268. -* NOTICE *- 21:50:33.283 - 32886782 - FormatCmdLine::GetNextLine() - Processing line number: 296
  1269. -* NOTICE *- 21:50:33.283 - 32886806 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT7" 6000
  1270. -* NOTICE *- 21:50:33.283 - 32886830 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 296, Command Line: -SetDspHighCutFrequency "TT7" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1271. -* NOTICE *- 21:50:33.284 - 32886966 - FormatCmdLine::GetNextLine() - Processing line number: 297
  1272. -* NOTICE *- 21:50:33.284 - 32886988 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT7" 32
  1273. -* NOTICE *- 21:50:33.284 - 32887012 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 297, Command Line: -SetDspHighCutNumberTaps "TT7" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1274. -* NOTICE *- 21:50:33.284 - 32887140 - FormatCmdLine::GetNextLine() - Processing line number: 298
  1275. -* NOTICE *- 21:50:33.284 - 32887162 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT7" True
  1276. -* NOTICE *- 21:50:33.284 - 32887184 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 298, Command Line: -SetInputInverted "TT7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1277. -* NOTICE *- 21:50:33.284 - 32887224 - FormatCmdLine::GetNextLine() - Processing line number: 299
  1278. -* NOTICE *- 21:50:33.284 - 32887244 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT7" True
  1279. -* NOTICE *- 21:50:33.284 - 32887266 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 299, Command Line: -SetDiskWriteEnabled "TT7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1280. -* NOTICE *- 21:50:33.284 - 32887306 - FormatCmdLine::GetNextLine() - Processing line number: 300
  1281. -* NOTICE *- 21:50:33.284 - 32887324 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT7" False
  1282. -* NOTICE *- 21:50:33.284 - 32887346 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 300, Command Line: -SetNetComDataBufferingEnabled "TT7" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1283. -* NOTICE *- 21:50:33.284 - 32887384 - FormatCmdLine::GetNextLine() - Processing line number: 301
  1284. -* NOTICE *- 21:50:33.284 - 32887404 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT7" 3000
  1285. -* NOTICE *- 21:50:33.284 - 32887426 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 301, Command Line: -SetNetComDataBufferSize "TT7" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1286. -* NOTICE *- 21:50:33.284 - 32887466 - FormatCmdLine::GetNextLine() - Processing line number: 302
  1287. -* NOTICE *- 21:50:33.284 - 32887484 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT7" 40 40 40 40
  1288. -* NOTICE *- 21:50:33.284 - 32887510 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 302, Command Line: -SetSpikeThreshold "TT7" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1289. -* NOTICE *- 21:50:33.284 - 32887568 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT7
  1290. -* NOTICE *- 21:50:33.284 - 32887602 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT7
  1291. -* NOTICE *- 21:50:33.284 - 32887636 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT7
  1292. -* NOTICE *- 21:50:33.284 - 32887670 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT7
  1293. -* NOTICE *- 21:50:33.284 - 32887694 - FormatCmdLine::GetNextLine() - Processing line number: 303
  1294. -* NOTICE *- 21:50:33.284 - 32887712 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT7" Threshold
  1295. -* NOTICE *- 21:50:33.284 - 32887734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 303, Command Line: -SetSpikeDetectionType "TT7" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1296. -* NOTICE *- 21:50:33.284 - 32887780 - FormatCmdLine::GetNextLine() - Processing line number: 304
  1297. -* NOTICE *- 21:50:33.284 - 32887800 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT7" 0 100 160
  1298. -* NOTICE *- 21:50:33.284 - 32887822 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 304, Command Line: -SetSpikeSlope "TT7" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1299. -* NOTICE *- 21:50:33.284 - 32887870 - FormatCmdLine::GetNextLine() - Processing line number: 305
  1300. -* NOTICE *- 21:50:33.284 - 32887890 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT7" 1 100 160
  1301. -* NOTICE *- 21:50:33.284 - 32887912 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 305, Command Line: -SetSpikeSlope "TT7" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1302. -* NOTICE *- 21:50:33.285 - 32887964 - FormatCmdLine::GetNextLine() - Processing line number: 306
  1303. -* NOTICE *- 21:50:33.285 - 32887984 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT7" 2 100 160
  1304. -* NOTICE *- 21:50:33.285 - 32888006 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 306, Command Line: -SetSpikeSlope "TT7" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1305. -* NOTICE *- 21:50:33.285 - 32888052 - FormatCmdLine::GetNextLine() - Processing line number: 307
  1306. -* NOTICE *- 21:50:33.285 - 32888072 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT7" 3 100 160
  1307. -* NOTICE *- 21:50:33.285 - 32888094 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 307, Command Line: -SetSpikeSlope "TT7" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1308. -* NOTICE *- 21:50:33.285 - 32888142 - FormatCmdLine::GetNextLine() - Processing line number: 308
  1309. -* NOTICE *- 21:50:33.285 - 32888160 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT7" False
  1310. -* NOTICE *- 21:50:33.285 - 32888182 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 308, Command Line: -SetSpikeDualThresholding "TT7" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1311. -* NOTICE *- 21:50:33.285 - 32888226 - FormatCmdLine::GetNextLine() - Processing line number: 309
  1312. -* NOTICE *- 21:50:33.285 - 32888246 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT7" 750
  1313. -* NOTICE *- 21:50:33.285 - 32888268 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 309, Command Line: -SetSpikeRetriggerTime "TT7" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1314. -* NOTICE *- 21:50:33.285 - 32888314 - FormatCmdLine::GetNextLine() - Processing line number: 310
  1315. -* NOTICE *- 21:50:33.285 - 32888336 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT7" 8
  1316. -* NOTICE *- 21:50:33.285 - 32888358 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 310, Command Line: -SetSpikeAlignmentPoint "TT7" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1317. -* NOTICE *- 21:50:33.285 - 32888400 - FormatCmdLine::GetNextLine() - Processing line number: 311
  1318. -* NOTICE *- 21:50:33.285 - 32888420 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT7" 0 True
  1319. -* NOTICE *- 21:50:33.285 - 32888598 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 311, Command Line: -SetSubChannelEnabled "TT7" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1320. -* NOTICE *- 21:50:33.285 - 32888644 - FormatCmdLine::GetNextLine() - Processing line number: 312
  1321. -* NOTICE *- 21:50:33.285 - 32888662 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT7" 1 True
  1322. -* NOTICE *- 21:50:33.285 - 32888684 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 312, Command Line: -SetSubChannelEnabled "TT7" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1323. -* NOTICE *- 21:50:33.285 - 32888724 - FormatCmdLine::GetNextLine() - Processing line number: 313
  1324. -* NOTICE *- 21:50:33.285 - 32888742 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT7" 2 True
  1325. -* NOTICE *- 21:50:33.285 - 32888764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 313, Command Line: -SetSubChannelEnabled "TT7" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1326. -* NOTICE *- 21:50:33.285 - 32888804 - FormatCmdLine::GetNextLine() - Processing line number: 314
  1327. -* NOTICE *- 21:50:33.285 - 32888822 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT7" 3 True
  1328. -* NOTICE *- 21:50:33.285 - 32888844 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 314, Command Line: -SetSubChannelEnabled "TT7" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1329. -* NOTICE *- 21:50:33.285 - 32888884 - FormatCmdLine::GetNextLine() - Processing line number: 315
  1330. -* NOTICE *- 21:50:33.285 - 32888902 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Peak 0 0 0 31
  1331. -* NOTICE *- 21:50:33.286 - 32888928 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 315, Command Line: -SetWaveformFeature "TT7" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1332. -* NOTICE *- 21:50:33.286 - 32888986 - FormatCmdLine::GetNextLine() - Processing line number: 316
  1333. -* NOTICE *- 21:50:33.286 - 32889006 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Peak 1 1 0 31
  1334. -* NOTICE *- 21:50:33.286 - 32889028 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 316, Command Line: -SetWaveformFeature "TT7" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1335. -* NOTICE *- 21:50:33.286 - 32889082 - FormatCmdLine::GetNextLine() - Processing line number: 317
  1336. -* NOTICE *- 21:50:33.286 - 32889102 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Peak 2 2 0 31
  1337. -* NOTICE *- 21:50:33.286 - 32889124 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 317, Command Line: -SetWaveformFeature "TT7" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1338. -* NOTICE *- 21:50:33.286 - 32889178 - FormatCmdLine::GetNextLine() - Processing line number: 318
  1339. -* NOTICE *- 21:50:33.286 - 32889268 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Peak 3 3 0 31
  1340. -* NOTICE *- 21:50:33.286 - 32889296 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 318, Command Line: -SetWaveformFeature "TT7" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1341. -* NOTICE *- 21:50:33.286 - 32889354 - FormatCmdLine::GetNextLine() - Processing line number: 319
  1342. -* NOTICE *- 21:50:33.286 - 32889376 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Valley 4 0 0 31
  1343. -* NOTICE *- 21:50:33.286 - 32889398 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 319, Command Line: -SetWaveformFeature "TT7" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1344. -* NOTICE *- 21:50:33.286 - 32889454 - FormatCmdLine::GetNextLine() - Processing line number: 320
  1345. -* NOTICE *- 21:50:33.286 - 32889474 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Valley 5 1 0 31
  1346. -* NOTICE *- 21:50:33.286 - 32889496 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 320, Command Line: -SetWaveformFeature "TT7" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1347. -* NOTICE *- 21:50:33.286 - 32889550 - FormatCmdLine::GetNextLine() - Processing line number: 321
  1348. -* NOTICE *- 21:50:33.286 - 32889570 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Valley 6 2 0 31
  1349. -* NOTICE *- 21:50:33.286 - 32889592 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 321, Command Line: -SetWaveformFeature "TT7" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1350. -* NOTICE *- 21:50:33.286 - 32889648 - FormatCmdLine::GetNextLine() - Processing line number: 322
  1351. -* NOTICE *- 21:50:33.286 - 32889668 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT7" Valley 7 3 0 31
  1352. -* NOTICE *- 21:50:33.286 - 32889688 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 322, Command Line: -SetWaveformFeature "TT7" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1353. -* NOTICE *- 21:50:33.286 - 32889744 - FormatCmdLine::GetNextLine() - Processing line number: 323
  1354. -* NOTICE *- 21:50:33.286 - 32889764 - FormatCmdLine::GetNextLine() - Processing line:
  1355. -* NOTICE *- 21:50:33.286 - 32889782 - FormatCmdLine::GetNextLine() - Processing line number: 324
  1356. -* NOTICE *- 21:50:33.286 - 32889798 - FormatCmdLine::GetNextLine() - Processing line:
  1357. -* NOTICE *- 21:50:33.286 - 32889818 - FormatCmdLine::GetNextLine() - Processing line number: 325
  1358. -* NOTICE *- 21:50:33.286 - 32889836 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT8"
  1359. -* NOTICE *- 21:50:33.286 - 32889854 - FormatCmdLine::GetNextLine() - Processing line number: 326
  1360. -* NOTICE *- 21:50:33.286 - 32889874 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT8" "AcqSystem1" 4
  1361. -* NOTICE *- 21:50:33.286 - 32889894 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 326, Command Line: -CreateSpikeAcqEnt "TT8" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1362. -* NOTICE *- 21:50:33.287 - 32890148 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE TT8. Channel Count: 4
  1363. -* NOTICE *- 21:50:33.288 - 32891520 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT8
  1364. -* NOTICE *- 21:50:33.288 - 32891568 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT8
  1365. -* NOTICE *- 21:50:33.288 - 32891606 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT8
  1366. -* NOTICE *- 21:50:33.288 - 32891652 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT8
  1367. -* NOTICE *- 21:50:33.288 - 32891682 - FormatCmdLine::GetNextLine() - Processing line number: 327
  1368. -* NOTICE *- 21:50:33.288 - 32891702 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT8" True
  1369. -* NOTICE *- 21:50:33.288 - 32891724 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 327, Command Line: -SetAcqEntProcessingEnabled "TT8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1370. -* NOTICE *- 21:50:33.288 - 32891766 - FormatCmdLine::GetNextLine() - Processing line number: 328
  1371. -* NOTICE *- 21:50:33.288 - 32891786 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT8" 23 22 21 20
  1372. -* NOTICE *- 21:50:33.288 - 32891808 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 328, Command Line: -SetChannelNumber "TT8" 23 22 21 20, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1373. -* NOTICE *- 21:50:33.288 - 32891882 - FormatCmdLine::GetNextLine() - Processing line number: 329
  1374. -* NOTICE *- 21:50:33.288 - 32891902 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT8" 8
  1375. -* NOTICE *- 21:50:33.289 - 32891938 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 329, Command Line: -SetAcqEntReference "TT8" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1376. -* NOTICE *- 21:50:33.289 - 32892014 - DRSController::SendDRSCommand() - DRS Command(b1 crs 23 0 ) about to be sent.
  1377. -* NOTICE *- 21:50:33.289 - 32892082 - DRSController::SendDRSCommand() - DRS Command(b1 crs 22 0 ) about to be sent.
  1378. -* NOTICE *- 21:50:33.289 - 32892146 - DRSController::SendDRSCommand() - DRS Command(b1 crs 21 0 ) about to be sent.
  1379. -* NOTICE *- 21:50:33.289 - 32892208 - DRSController::SendDRSCommand() - DRS Command(b1 crs 20 0 ) about to be sent.
  1380. -* NOTICE *- 21:50:33.289 - 32892258 - FormatCmdLine::GetNextLine() - Processing line number: 330
  1381. -* NOTICE *- 21:50:33.289 - 32892280 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT8" 150 150 150 150
  1382. -* NOTICE *- 21:50:33.289 - 32892304 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 330, Command Line: -SetInputRange "TT8" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1383. -* NOTICE *- 21:50:33.289 - 32892362 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT8
  1384. -* NOTICE *- 21:50:33.289 - 32892402 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT8
  1385. -* NOTICE *- 21:50:33.289 - 32892440 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT8
  1386. -* NOTICE *- 21:50:33.289 - 32892478 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT8
  1387. -* NOTICE *- 21:50:33.289 - 32892502 - FormatCmdLine::GetNextLine() - Processing line number: 331
  1388. -* NOTICE *- 21:50:33.289 - 32892520 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT8" 1
  1389. -* NOTICE *- 21:50:33.289 - 32892542 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 331, Command Line: -SetSubSamplingInterleave "TT8" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1390. -* NOTICE *- 21:50:33.289 - 32892590 - FormatCmdLine::GetNextLine() - Processing line number: 332
  1391. -* NOTICE *- 21:50:33.289 - 32892610 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT8" True
  1392. -* NOTICE *- 21:50:33.289 - 32892632 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 332, Command Line: -SetDspLowCutFilterEnabled "TT8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1393. -* NOTICE *- 21:50:33.290 - 32892988 - FormatCmdLine::GetNextLine() - Processing line number: 333
  1394. -* NOTICE *- 21:50:33.290 - 32893016 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT8" 600
  1395. -* NOTICE *- 21:50:33.290 - 32893040 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 333, Command Line: -SetDspLowCutFrequency "TT8" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1396. -* NOTICE *- 21:50:33.290 - 32893246 - FormatCmdLine::GetNextLine() - Processing line number: 334
  1397. -* NOTICE *- 21:50:33.290 - 32893270 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT8" 64
  1398. -* NOTICE *- 21:50:33.290 - 32893292 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 334, Command Line: -SetDspLowCutNumberTaps "TT8" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1399. -* NOTICE *- 21:50:33.290 - 32893494 - FormatCmdLine::GetNextLine() - Processing line number: 335
  1400. -* NOTICE *- 21:50:33.290 - 32893516 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT8" True
  1401. -* NOTICE *- 21:50:33.290 - 32893538 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 335, Command Line: -SetDspHighCutFilterEnabled "TT8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1402. -* NOTICE *- 21:50:33.290 - 32893762 - FormatCmdLine::GetNextLine() - Processing line number: 336
  1403. -* NOTICE *- 21:50:33.290 - 32893786 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT8" 6000
  1404. -* NOTICE *- 21:50:33.290 - 32893808 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 336, Command Line: -SetDspHighCutFrequency "TT8" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1405. -* NOTICE *- 21:50:33.291 - 32893946 - FormatCmdLine::GetNextLine() - Processing line number: 337
  1406. -* NOTICE *- 21:50:33.291 - 32893968 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT8" 32
  1407. -* NOTICE *- 21:50:33.291 - 32893990 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 337, Command Line: -SetDspHighCutNumberTaps "TT8" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1408. -* NOTICE *- 21:50:33.291 - 32894120 - FormatCmdLine::GetNextLine() - Processing line number: 338
  1409. -* NOTICE *- 21:50:33.291 - 32894142 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT8" True
  1410. -* NOTICE *- 21:50:33.291 - 32894164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 338, Command Line: -SetInputInverted "TT8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1411. -* NOTICE *- 21:50:33.291 - 32894204 - FormatCmdLine::GetNextLine() - Processing line number: 339
  1412. -* NOTICE *- 21:50:33.291 - 32894224 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT8" True
  1413. -* NOTICE *- 21:50:33.291 - 32894246 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 339, Command Line: -SetDiskWriteEnabled "TT8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1414. -* NOTICE *- 21:50:33.291 - 32894286 - FormatCmdLine::GetNextLine() - Processing line number: 340
  1415. -* NOTICE *- 21:50:33.291 - 32894304 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT8" False
  1416. -* NOTICE *- 21:50:33.291 - 32894326 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 340, Command Line: -SetNetComDataBufferingEnabled "TT8" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1417. -* NOTICE *- 21:50:33.291 - 32894366 - FormatCmdLine::GetNextLine() - Processing line number: 341
  1418. -* NOTICE *- 21:50:33.291 - 32894384 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT8" 3000
  1419. -* NOTICE *- 21:50:33.291 - 32894412 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 341, Command Line: -SetNetComDataBufferSize "TT8" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1420. -* NOTICE *- 21:50:33.291 - 32894456 - FormatCmdLine::GetNextLine() - Processing line number: 342
  1421. -* NOTICE *- 21:50:33.291 - 32894476 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT8" 40 40 40 40
  1422. -* NOTICE *- 21:50:33.291 - 32894496 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 342, Command Line: -SetSpikeThreshold "TT8" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1423. -* NOTICE *- 21:50:33.291 - 32894552 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT8
  1424. -* NOTICE *- 21:50:33.291 - 32894588 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT8
  1425. -* NOTICE *- 21:50:33.291 - 32894622 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT8
  1426. -* NOTICE *- 21:50:33.291 - 32894656 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT8
  1427. -* NOTICE *- 21:50:33.291 - 32894680 - FormatCmdLine::GetNextLine() - Processing line number: 343
  1428. -* NOTICE *- 21:50:33.291 - 32894698 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT8" Threshold
  1429. -* NOTICE *- 21:50:33.291 - 32894720 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 343, Command Line: -SetSpikeDetectionType "TT8" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1430. -* NOTICE *- 21:50:33.291 - 32894766 - FormatCmdLine::GetNextLine() - Processing line number: 344
  1431. -* NOTICE *- 21:50:33.291 - 32894786 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT8" 0 100 160
  1432. -* NOTICE *- 21:50:33.291 - 32894810 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 344, Command Line: -SetSpikeSlope "TT8" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1433. -* NOTICE *- 21:50:33.291 - 32894858 - FormatCmdLine::GetNextLine() - Processing line number: 345
  1434. -* NOTICE *- 21:50:33.291 - 32894878 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT8" 1 100 160
  1435. -* NOTICE *- 21:50:33.291 - 32894900 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 345, Command Line: -SetSpikeSlope "TT8" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1436. -* NOTICE *- 21:50:33.292 - 32894950 - FormatCmdLine::GetNextLine() - Processing line number: 346
  1437. -* NOTICE *- 21:50:33.292 - 32894972 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT8" 2 100 160
  1438. -* NOTICE *- 21:50:33.292 - 32894994 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 346, Command Line: -SetSpikeSlope "TT8" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1439. -* NOTICE *- 21:50:33.292 - 32895042 - FormatCmdLine::GetNextLine() - Processing line number: 347
  1440. -* NOTICE *- 21:50:33.292 - 32895062 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT8" 3 100 160
  1441. -* NOTICE *- 21:50:33.292 - 32895082 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 347, Command Line: -SetSpikeSlope "TT8" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1442. -* NOTICE *- 21:50:33.292 - 32895130 - FormatCmdLine::GetNextLine() - Processing line number: 348
  1443. -* NOTICE *- 21:50:33.292 - 32895150 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT8" False
  1444. -* NOTICE *- 21:50:33.292 - 32895172 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 348, Command Line: -SetSpikeDualThresholding "TT8" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1445. -* NOTICE *- 21:50:33.292 - 32895220 - FormatCmdLine::GetNextLine() - Processing line number: 349
  1446. -* NOTICE *- 21:50:33.292 - 32895242 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT8" 750
  1447. -* NOTICE *- 21:50:33.292 - 32895266 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 349, Command Line: -SetSpikeRetriggerTime "TT8" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1448. -* NOTICE *- 21:50:33.292 - 32895306 - FormatCmdLine::GetNextLine() - Processing line number: 350
  1449. -* NOTICE *- 21:50:33.292 - 32895326 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT8" 8
  1450. -* NOTICE *- 21:50:33.292 - 32895348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 350, Command Line: -SetSpikeAlignmentPoint "TT8" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1451. -* NOTICE *- 21:50:33.292 - 32895390 - FormatCmdLine::GetNextLine() - Processing line number: 351
  1452. -* NOTICE *- 21:50:33.292 - 32895408 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT8" 0 True
  1453. -* NOTICE *- 21:50:33.292 - 32895430 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 351, Command Line: -SetSubChannelEnabled "TT8" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1454. -* NOTICE *- 21:50:33.292 - 32895472 - FormatCmdLine::GetNextLine() - Processing line number: 352
  1455. -* NOTICE *- 21:50:33.292 - 32895492 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT8" 1 True
  1456. -* NOTICE *- 21:50:33.292 - 32895514 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 352, Command Line: -SetSubChannelEnabled "TT8" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1457. -* NOTICE *- 21:50:33.292 - 32895554 - FormatCmdLine::GetNextLine() - Processing line number: 353
  1458. -* NOTICE *- 21:50:33.292 - 32895574 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT8" 2 True
  1459. -* NOTICE *- 21:50:33.292 - 32895596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 353, Command Line: -SetSubChannelEnabled "TT8" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1460. -* NOTICE *- 21:50:33.292 - 32895634 - FormatCmdLine::GetNextLine() - Processing line number: 354
  1461. -* NOTICE *- 21:50:33.292 - 32895654 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT8" 3 True
  1462. -* NOTICE *- 21:50:33.292 - 32895676 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 354, Command Line: -SetSubChannelEnabled "TT8" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1463. -* NOTICE *- 21:50:33.292 - 32895734 - FormatCmdLine::GetNextLine() - Processing line number: 355
  1464. -* NOTICE *- 21:50:33.292 - 32895754 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Peak 0 0 0 31
  1465. -* NOTICE *- 21:50:33.292 - 32895776 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 355, Command Line: -SetWaveformFeature "TT8" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1466. -* NOTICE *- 21:50:33.292 - 32895834 - FormatCmdLine::GetNextLine() - Processing line number: 356
  1467. -* NOTICE *- 21:50:33.292 - 32895854 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Peak 1 1 0 31
  1468. -* NOTICE *- 21:50:33.292 - 32895876 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 356, Command Line: -SetWaveformFeature "TT8" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1469. -* NOTICE *- 21:50:33.293 - 32895934 - FormatCmdLine::GetNextLine() - Processing line number: 357
  1470. -* NOTICE *- 21:50:33.293 - 32895960 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Peak 2 2 0 31
  1471. -* NOTICE *- 21:50:33.293 - 32895982 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 357, Command Line: -SetWaveformFeature "TT8" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1472. -* NOTICE *- 21:50:33.293 - 32896040 - FormatCmdLine::GetNextLine() - Processing line number: 358
  1473. -* NOTICE *- 21:50:33.293 - 32896060 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Peak 3 3 0 31
  1474. -* NOTICE *- 21:50:33.293 - 32896082 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 358, Command Line: -SetWaveformFeature "TT8" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1475. -* NOTICE *- 21:50:33.293 - 32896138 - FormatCmdLine::GetNextLine() - Processing line number: 359
  1476. -* NOTICE *- 21:50:33.293 - 32896158 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Valley 4 0 0 31
  1477. -* NOTICE *- 21:50:33.293 - 32896180 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 359, Command Line: -SetWaveformFeature "TT8" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1478. -* NOTICE *- 21:50:33.293 - 32896236 - FormatCmdLine::GetNextLine() - Processing line number: 360
  1479. -* NOTICE *- 21:50:33.293 - 32896256 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Valley 5 1 0 31
  1480. -* NOTICE *- 21:50:33.293 - 32896278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 360, Command Line: -SetWaveformFeature "TT8" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1481. -* NOTICE *- 21:50:33.293 - 32896334 - FormatCmdLine::GetNextLine() - Processing line number: 361
  1482. -* NOTICE *- 21:50:33.293 - 32896354 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Valley 6 2 0 31
  1483. -* NOTICE *- 21:50:33.293 - 32896374 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 361, Command Line: -SetWaveformFeature "TT8" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1484. -* NOTICE *- 21:50:33.293 - 32896430 - FormatCmdLine::GetNextLine() - Processing line number: 362
  1485. -* NOTICE *- 21:50:33.293 - 32896450 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT8" Valley 7 3 0 31
  1486. -* NOTICE *- 21:50:33.293 - 32896472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 362, Command Line: -SetWaveformFeature "TT8" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1487. -* NOTICE *- 21:50:33.293 - 32896526 - FormatCmdLine::GetNextLine() - Processing line number: 363
  1488. -* NOTICE *- 21:50:33.293 - 32896546 - FormatCmdLine::GetNextLine() - Processing line:
  1489. -* NOTICE *- 21:50:33.293 - 32896564 - FormatCmdLine::GetNextLine() - Processing line number: 364
  1490. -* NOTICE *- 21:50:33.293 - 32896582 - FormatCmdLine::GetNextLine() - Processing line:
  1491. -* NOTICE *- 21:50:33.293 - 32896602 - FormatCmdLine::GetNextLine() - Processing line number: 365
  1492. -* NOTICE *- 21:50:33.293 - 32896620 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT9"
  1493. -* NOTICE *- 21:50:33.293 - 32896638 - FormatCmdLine::GetNextLine() - Processing line number: 366
  1494. -* NOTICE *- 21:50:33.293 - 32896656 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT9" "AcqSystem1" 4
  1495. -* NOTICE *- 21:50:33.293 - 32896678 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 366, Command Line: -CreateSpikeAcqEnt "TT9" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1496. -* NOTICE *- 21:50:33.294 - 32896948 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE TT9. Channel Count: 4
  1497. -* NOTICE *- 21:50:33.295 - 32898342 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT9
  1498. -* NOTICE *- 21:50:33.295 - 32898392 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT9
  1499. -* NOTICE *- 21:50:33.295 - 32898430 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT9
  1500. -* NOTICE *- 21:50:33.295 - 32898468 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT9
  1501. -* NOTICE *- 21:50:33.295 - 32898496 - FormatCmdLine::GetNextLine() - Processing line number: 367
  1502. -* NOTICE *- 21:50:33.295 - 32898516 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT9" True
  1503. -* NOTICE *- 21:50:33.295 - 32898538 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 367, Command Line: -SetAcqEntProcessingEnabled "TT9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1504. -* NOTICE *- 21:50:33.295 - 32898580 - FormatCmdLine::GetNextLine() - Processing line number: 368
  1505. -* NOTICE *- 21:50:33.295 - 32898600 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT9" 47 46 45 44
  1506. -* NOTICE *- 21:50:33.295 - 32898622 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 368, Command Line: -SetChannelNumber "TT9" 47 46 45 44, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1507. -* NOTICE *- 21:50:33.295 - 32898696 - FormatCmdLine::GetNextLine() - Processing line number: 369
  1508. -* NOTICE *- 21:50:33.295 - 32898718 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT9" 8
  1509. -* NOTICE *- 21:50:33.295 - 32898740 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 369, Command Line: -SetAcqEntReference "TT9" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1510. -* NOTICE *- 21:50:33.295 - 32898824 - DRSController::SendDRSCommand() - DRS Command(b3 crs 15 0 ) about to be sent.
  1511. -* NOTICE *- 21:50:33.295 - 32898902 - DRSController::SendDRSCommand() - DRS Command(b3 crs 14 0 ) about to be sent.
  1512. -* NOTICE *- 21:50:33.296 - 32898980 - DRSController::SendDRSCommand() - DRS Command(b3 crs 13 0 ) about to be sent.
  1513. -* NOTICE *- 21:50:33.296 - 32899054 - DRSController::SendDRSCommand() - DRS Command(b3 crs 12 0 ) about to be sent.
  1514. -* NOTICE *- 21:50:33.296 - 32899106 - FormatCmdLine::GetNextLine() - Processing line number: 370
  1515. -* NOTICE *- 21:50:33.296 - 32899128 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT9" 150 150 150 150
  1516. -* NOTICE *- 21:50:33.296 - 32899152 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 370, Command Line: -SetInputRange "TT9" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1517. -* NOTICE *- 21:50:33.296 - 32899210 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT9
  1518. -* NOTICE *- 21:50:33.296 - 32899250 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT9
  1519. -* NOTICE *- 21:50:33.296 - 32899288 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT9
  1520. -* NOTICE *- 21:50:33.296 - 32899326 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT9
  1521. -* NOTICE *- 21:50:33.296 - 32899350 - FormatCmdLine::GetNextLine() - Processing line number: 371
  1522. -* NOTICE *- 21:50:33.296 - 32899368 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT9" 1
  1523. -* NOTICE *- 21:50:33.296 - 32899390 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 371, Command Line: -SetSubSamplingInterleave "TT9" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1524. -* NOTICE *- 21:50:33.296 - 32899444 - FormatCmdLine::GetNextLine() - Processing line number: 372
  1525. -* NOTICE *- 21:50:33.296 - 32899466 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT9" True
  1526. -* NOTICE *- 21:50:33.296 - 32899488 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 372, Command Line: -SetDspLowCutFilterEnabled "TT9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1527. -* NOTICE *- 21:50:33.296 - 32899814 - FormatCmdLine::GetNextLine() - Processing line number: 373
  1528. -* NOTICE *- 21:50:33.296 - 32899840 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT9" 600
  1529. -* NOTICE *- 21:50:33.296 - 32899862 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 373, Command Line: -SetDspLowCutFrequency "TT9" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1530. -* NOTICE *- 21:50:33.297 - 32900074 - FormatCmdLine::GetNextLine() - Processing line number: 374
  1531. -* NOTICE *- 21:50:33.297 - 32900098 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT9" 64
  1532. -* NOTICE *- 21:50:33.297 - 32900122 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 374, Command Line: -SetDspLowCutNumberTaps "TT9" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1533. -* NOTICE *- 21:50:33.297 - 32900324 - FormatCmdLine::GetNextLine() - Processing line number: 375
  1534. -* NOTICE *- 21:50:33.297 - 32900348 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT9" True
  1535. -* NOTICE *- 21:50:33.297 - 32900370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 375, Command Line: -SetDspHighCutFilterEnabled "TT9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1536. -* NOTICE *- 21:50:33.297 - 32900592 - FormatCmdLine::GetNextLine() - Processing line number: 376
  1537. -* NOTICE *- 21:50:33.297 - 32900616 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT9" 6000
  1538. -* NOTICE *- 21:50:33.297 - 32900638 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 376, Command Line: -SetDspHighCutFrequency "TT9" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1539. -* NOTICE *- 21:50:33.297 - 32900772 - FormatCmdLine::GetNextLine() - Processing line number: 377
  1540. -* NOTICE *- 21:50:33.297 - 32900794 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT9" 32
  1541. -* NOTICE *- 21:50:33.297 - 32900816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 377, Command Line: -SetDspHighCutNumberTaps "TT9" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1542. -* NOTICE *- 21:50:33.298 - 32900950 - FormatCmdLine::GetNextLine() - Processing line number: 378
  1543. -* NOTICE *- 21:50:33.298 - 32900972 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT9" True
  1544. -* NOTICE *- 21:50:33.298 - 32900996 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 378, Command Line: -SetInputInverted "TT9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1545. -* NOTICE *- 21:50:33.298 - 32901036 - FormatCmdLine::GetNextLine() - Processing line number: 379
  1546. -* NOTICE *- 21:50:33.298 - 32901054 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT9" True
  1547. -* NOTICE *- 21:50:33.298 - 32901076 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 379, Command Line: -SetDiskWriteEnabled "TT9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1548. -* NOTICE *- 21:50:33.298 - 32901116 - FormatCmdLine::GetNextLine() - Processing line number: 380
  1549. -* NOTICE *- 21:50:33.298 - 32901134 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT9" False
  1550. -* NOTICE *- 21:50:33.298 - 32901160 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 380, Command Line: -SetNetComDataBufferingEnabled "TT9" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1551. -* NOTICE *- 21:50:33.298 - 32901202 - FormatCmdLine::GetNextLine() - Processing line number: 381
  1552. -* NOTICE *- 21:50:33.298 - 32901222 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT9" 3000
  1553. -* NOTICE *- 21:50:33.298 - 32901244 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 381, Command Line: -SetNetComDataBufferSize "TT9" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1554. -* NOTICE *- 21:50:33.298 - 32901284 - FormatCmdLine::GetNextLine() - Processing line number: 382
  1555. -* NOTICE *- 21:50:33.298 - 32901304 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT9" 40 40 40 40
  1556. -* NOTICE *- 21:50:33.298 - 32901326 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 382, Command Line: -SetSpikeThreshold "TT9" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1557. -* NOTICE *- 21:50:33.298 - 32901382 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT9
  1558. -* NOTICE *- 21:50:33.298 - 32901416 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT9
  1559. -* NOTICE *- 21:50:33.298 - 32901450 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT9
  1560. -* NOTICE *- 21:50:33.298 - 32901484 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT9
  1561. -* NOTICE *- 21:50:33.298 - 32901508 - FormatCmdLine::GetNextLine() - Processing line number: 383
  1562. -* NOTICE *- 21:50:33.298 - 32901526 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT9" Threshold
  1563. -* NOTICE *- 21:50:33.298 - 32901548 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 383, Command Line: -SetSpikeDetectionType "TT9" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1564. -* NOTICE *- 21:50:33.298 - 32901596 - FormatCmdLine::GetNextLine() - Processing line number: 384
  1565. -* NOTICE *- 21:50:33.298 - 32901616 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT9" 0 100 160
  1566. -* NOTICE *- 21:50:33.298 - 32901638 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 384, Command Line: -SetSpikeSlope "TT9" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1567. -* NOTICE *- 21:50:33.298 - 32901686 - FormatCmdLine::GetNextLine() - Processing line number: 385
  1568. -* NOTICE *- 21:50:33.298 - 32901706 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT9" 1 100 160
  1569. -* NOTICE *- 21:50:33.298 - 32901728 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 385, Command Line: -SetSpikeSlope "TT9" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1570. -* NOTICE *- 21:50:33.298 - 32901776 - FormatCmdLine::GetNextLine() - Processing line number: 386
  1571. -* NOTICE *- 21:50:33.298 - 32901796 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT9" 2 100 160
  1572. -* NOTICE *- 21:50:33.298 - 32901818 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 386, Command Line: -SetSpikeSlope "TT9" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1573. -* NOTICE *- 21:50:33.298 - 32901866 - FormatCmdLine::GetNextLine() - Processing line number: 387
  1574. -* NOTICE *- 21:50:33.299 - 32902062 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT9" 3 100 160
  1575. -* NOTICE *- 21:50:33.299 - 32902088 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 387, Command Line: -SetSpikeSlope "TT9" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1576. -* NOTICE *- 21:50:33.299 - 32902146 - FormatCmdLine::GetNextLine() - Processing line number: 388
  1577. -* NOTICE *- 21:50:33.299 - 32902168 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT9" False
  1578. -* NOTICE *- 21:50:33.299 - 32902190 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 388, Command Line: -SetSpikeDualThresholding "TT9" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1579. -* NOTICE *- 21:50:33.299 - 32902236 - FormatCmdLine::GetNextLine() - Processing line number: 389
  1580. -* NOTICE *- 21:50:33.299 - 32902256 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT9" 750
  1581. -* NOTICE *- 21:50:33.299 - 32902278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 389, Command Line: -SetSpikeRetriggerTime "TT9" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1582. -* NOTICE *- 21:50:33.299 - 32902318 - FormatCmdLine::GetNextLine() - Processing line number: 390
  1583. -* NOTICE *- 21:50:33.299 - 32902338 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT9" 8
  1584. -* NOTICE *- 21:50:33.299 - 32902360 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 390, Command Line: -SetSpikeAlignmentPoint "TT9" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1585. -* NOTICE *- 21:50:33.299 - 32902400 - FormatCmdLine::GetNextLine() - Processing line number: 391
  1586. -* NOTICE *- 21:50:33.299 - 32902420 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT9" 0 True
  1587. -* NOTICE *- 21:50:33.299 - 32902442 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 391, Command Line: -SetSubChannelEnabled "TT9" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1588. -* NOTICE *- 21:50:33.299 - 32902482 - FormatCmdLine::GetNextLine() - Processing line number: 392
  1589. -* NOTICE *- 21:50:33.299 - 32902502 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT9" 1 True
  1590. -* NOTICE *- 21:50:33.299 - 32902524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 392, Command Line: -SetSubChannelEnabled "TT9" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1591. -* NOTICE *- 21:50:33.299 - 32902564 - FormatCmdLine::GetNextLine() - Processing line number: 393
  1592. -* NOTICE *- 21:50:33.299 - 32902582 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT9" 2 True
  1593. -* NOTICE *- 21:50:33.299 - 32902604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 393, Command Line: -SetSubChannelEnabled "TT9" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1594. -* NOTICE *- 21:50:33.299 - 32902644 - FormatCmdLine::GetNextLine() - Processing line number: 394
  1595. -* NOTICE *- 21:50:33.299 - 32902662 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT9" 3 True
  1596. -* NOTICE *- 21:50:33.299 - 32902684 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 394, Command Line: -SetSubChannelEnabled "TT9" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1597. -* NOTICE *- 21:50:33.299 - 32902724 - FormatCmdLine::GetNextLine() - Processing line number: 395
  1598. -* NOTICE *- 21:50:33.299 - 32902744 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Peak 0 0 0 31
  1599. -* NOTICE *- 21:50:33.299 - 32902764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 395, Command Line: -SetWaveformFeature "TT9" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1600. -* NOTICE *- 21:50:33.299 - 32902822 - FormatCmdLine::GetNextLine() - Processing line number: 396
  1601. -* NOTICE *- 21:50:33.299 - 32902846 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Peak 1 1 0 31
  1602. -* NOTICE *- 21:50:33.299 - 32902870 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 396, Command Line: -SetWaveformFeature "TT9" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1603. -* NOTICE *- 21:50:33.300 - 32902930 - FormatCmdLine::GetNextLine() - Processing line number: 397
  1604. -* NOTICE *- 21:50:33.300 - 32902950 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Peak 2 2 0 31
  1605. -* NOTICE *- 21:50:33.300 - 32902974 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 397, Command Line: -SetWaveformFeature "TT9" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1606. -* NOTICE *- 21:50:33.300 - 32903028 - FormatCmdLine::GetNextLine() - Processing line number: 398
  1607. -* NOTICE *- 21:50:33.300 - 32903050 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Peak 3 3 0 31
  1608. -* NOTICE *- 21:50:33.300 - 32903072 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 398, Command Line: -SetWaveformFeature "TT9" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1609. -* NOTICE *- 21:50:33.300 - 32903126 - FormatCmdLine::GetNextLine() - Processing line number: 399
  1610. -* NOTICE *- 21:50:33.300 - 32903146 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Valley 4 0 0 31
  1611. -* NOTICE *- 21:50:33.300 - 32903168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 399, Command Line: -SetWaveformFeature "TT9" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1612. -* NOTICE *- 21:50:33.300 - 32903224 - FormatCmdLine::GetNextLine() - Processing line number: 400
  1613. -* NOTICE *- 21:50:33.300 - 32903244 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Valley 5 1 0 31
  1614. -* NOTICE *- 21:50:33.300 - 32903266 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 400, Command Line: -SetWaveformFeature "TT9" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1615. -* NOTICE *- 21:50:33.300 - 32903320 - FormatCmdLine::GetNextLine() - Processing line number: 401
  1616. -* NOTICE *- 21:50:33.300 - 32903340 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Valley 6 2 0 31
  1617. -* NOTICE *- 21:50:33.300 - 32903362 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 401, Command Line: -SetWaveformFeature "TT9" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1618. -* NOTICE *- 21:50:33.300 - 32903418 - FormatCmdLine::GetNextLine() - Processing line number: 402
  1619. -* NOTICE *- 21:50:33.300 - 32903438 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT9" Valley 7 3 0 31
  1620. -* NOTICE *- 21:50:33.300 - 32903460 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 402, Command Line: -SetWaveformFeature "TT9" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1621. -* NOTICE *- 21:50:33.300 - 32903514 - FormatCmdLine::GetNextLine() - Processing line number: 403
  1622. -* NOTICE *- 21:50:33.300 - 32903534 - FormatCmdLine::GetNextLine() - Processing line:
  1623. -* NOTICE *- 21:50:33.300 - 32903552 - FormatCmdLine::GetNextLine() - Processing line number: 404
  1624. -* NOTICE *- 21:50:33.300 - 32903570 - FormatCmdLine::GetNextLine() - Processing line:
  1625. -* NOTICE *- 21:50:33.300 - 32903590 - FormatCmdLine::GetNextLine() - Processing line number: 405
  1626. -* NOTICE *- 21:50:33.300 - 32903606 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT10"
  1627. -* NOTICE *- 21:50:33.300 - 32903626 - FormatCmdLine::GetNextLine() - Processing line number: 406
  1628. -* NOTICE *- 21:50:33.300 - 32903648 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT10" "AcqSystem1" 4
  1629. -* NOTICE *- 21:50:33.300 - 32903672 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 406, Command Line: -CreateSpikeAcqEnt "TT10" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1630. -* NOTICE *- 21:50:33.301 - 32903946 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE TT10. Channel Count: 4
  1631. -* NOTICE *- 21:50:33.302 - 32905374 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT10
  1632. -* NOTICE *- 21:50:33.302 - 32905420 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT10
  1633. -* NOTICE *- 21:50:33.302 - 32905458 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT10
  1634. -* NOTICE *- 21:50:33.302 - 32905496 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT10
  1635. -* NOTICE *- 21:50:33.302 - 32905524 - FormatCmdLine::GetNextLine() - Processing line number: 407
  1636. -* NOTICE *- 21:50:33.302 - 32905544 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT10" True
  1637. -* NOTICE *- 21:50:33.302 - 32905566 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 407, Command Line: -SetAcqEntProcessingEnabled "TT10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1638. -* NOTICE *- 21:50:33.302 - 32905608 - FormatCmdLine::GetNextLine() - Processing line number: 408
  1639. -* NOTICE *- 21:50:33.302 - 32905628 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT10" 32 33 34 35
  1640. -* NOTICE *- 21:50:33.302 - 32905650 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 408, Command Line: -SetChannelNumber "TT10" 32 33 34 35, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1641. -* NOTICE *- 21:50:33.302 - 32905726 - FormatCmdLine::GetNextLine() - Processing line number: 409
  1642. -* NOTICE *- 21:50:33.302 - 32905746 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT10" 8
  1643. -* NOTICE *- 21:50:33.302 - 32905768 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 409, Command Line: -SetAcqEntReference "TT10" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1644. -* NOTICE *- 21:50:33.302 - 32905858 - DRSController::SendDRSCommand() - DRS Command(b3 crs 0 0 ) about to be sent.
  1645. -* NOTICE *- 21:50:33.303 - 32905940 - DRSController::SendDRSCommand() - DRS Command(b3 crs 1 0 ) about to be sent.
  1646. -* NOTICE *- 21:50:33.303 - 32906016 - DRSController::SendDRSCommand() - DRS Command(b3 crs 2 0 ) about to be sent.
  1647. -* NOTICE *- 21:50:33.303 - 32906088 - DRSController::SendDRSCommand() - DRS Command(b3 crs 3 0 ) about to be sent.
  1648. -* NOTICE *- 21:50:33.303 - 32906140 - FormatCmdLine::GetNextLine() - Processing line number: 410
  1649. -* NOTICE *- 21:50:33.303 - 32906162 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT10" 200 200 200 200
  1650. -* NOTICE *- 21:50:33.303 - 32906186 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 410, Command Line: -SetInputRange "TT10" 200 200 200 200, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1651. -* NOTICE *- 21:50:33.303 - 32906246 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 0. AE Name: TT10
  1652. -* NOTICE *- 21:50:33.303 - 32906286 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 1. AE Name: TT10
  1653. -* NOTICE *- 21:50:33.303 - 32906324 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 2. AE Name: TT10
  1654. -* NOTICE *- 21:50:33.303 - 32906364 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 200 µV for sub channel 3. AE Name: TT10
  1655. -* NOTICE *- 21:50:33.303 - 32906392 - FormatCmdLine::GetNextLine() - Processing line number: 411
  1656. -* NOTICE *- 21:50:33.303 - 32906412 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT10" 1
  1657. -* NOTICE *- 21:50:33.303 - 32906436 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 411, Command Line: -SetSubSamplingInterleave "TT10" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1658. -* NOTICE *- 21:50:33.303 - 32906484 - FormatCmdLine::GetNextLine() - Processing line number: 412
  1659. -* NOTICE *- 21:50:33.303 - 32906504 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT10" True
  1660. -* NOTICE *- 21:50:33.303 - 32906526 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 412, Command Line: -SetDspLowCutFilterEnabled "TT10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1661. -* NOTICE *- 21:50:33.303 - 32906870 - FormatCmdLine::GetNextLine() - Processing line number: 413
  1662. -* NOTICE *- 21:50:33.303 - 32906898 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT10" 600
  1663. -* NOTICE *- 21:50:33.304 - 32906922 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 413, Command Line: -SetDspLowCutFrequency "TT10" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1664. -* NOTICE *- 21:50:33.304 - 32907136 - FormatCmdLine::GetNextLine() - Processing line number: 414
  1665. -* NOTICE *- 21:50:33.304 - 32907158 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT10" 64
  1666. -* NOTICE *- 21:50:33.304 - 32907182 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 414, Command Line: -SetDspLowCutNumberTaps "TT10" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1667. -* NOTICE *- 21:50:33.304 - 32907386 - FormatCmdLine::GetNextLine() - Processing line number: 415
  1668. -* NOTICE *- 21:50:33.304 - 32907408 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT10" True
  1669. -* NOTICE *- 21:50:33.304 - 32907432 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 415, Command Line: -SetDspHighCutFilterEnabled "TT10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1670. -* NOTICE *- 21:50:33.304 - 32907650 - FormatCmdLine::GetNextLine() - Processing line number: 416
  1671. -* NOTICE *- 21:50:33.304 - 32907674 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT10" 6000
  1672. -* NOTICE *- 21:50:33.304 - 32907696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 416, Command Line: -SetDspHighCutFrequency "TT10" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1673. -* NOTICE *- 21:50:33.304 - 32907832 - FormatCmdLine::GetNextLine() - Processing line number: 417
  1674. -* NOTICE *- 21:50:33.304 - 32907854 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT10" 32
  1675. -* NOTICE *- 21:50:33.304 - 32907876 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 417, Command Line: -SetDspHighCutNumberTaps "TT10" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1676. -* NOTICE *- 21:50:33.305 - 32908010 - FormatCmdLine::GetNextLine() - Processing line number: 418
  1677. -* NOTICE *- 21:50:33.305 - 32908034 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT10" True
  1678. -* NOTICE *- 21:50:33.305 - 32908056 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 418, Command Line: -SetInputInverted "TT10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1679. -* NOTICE *- 21:50:33.305 - 32908096 - FormatCmdLine::GetNextLine() - Processing line number: 419
  1680. -* NOTICE *- 21:50:33.305 - 32908116 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT10" True
  1681. -* NOTICE *- 21:50:33.305 - 32908142 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 419, Command Line: -SetDiskWriteEnabled "TT10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1682. -* NOTICE *- 21:50:33.305 - 32908186 - FormatCmdLine::GetNextLine() - Processing line number: 420
  1683. -* NOTICE *- 21:50:33.305 - 32908206 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT10" False
  1684. -* NOTICE *- 21:50:33.305 - 32908228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 420, Command Line: -SetNetComDataBufferingEnabled "TT10" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1685. -* NOTICE *- 21:50:33.305 - 32908268 - FormatCmdLine::GetNextLine() - Processing line number: 421
  1686. -* NOTICE *- 21:50:33.305 - 32908286 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT10" 3000
  1687. -* NOTICE *- 21:50:33.305 - 32908310 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 421, Command Line: -SetNetComDataBufferSize "TT10" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1688. -* NOTICE *- 21:50:33.305 - 32908350 - FormatCmdLine::GetNextLine() - Processing line number: 422
  1689. -* NOTICE *- 21:50:33.305 - 32908370 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT10" 45 45 45 45
  1690. -* NOTICE *- 21:50:33.305 - 32908392 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 422, Command Line: -SetSpikeThreshold "TT10" 45 45 45 45, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1691. -* NOTICE *- 21:50:33.305 - 32908448 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT10
  1692. -* NOTICE *- 21:50:33.305 - 32908482 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT10
  1693. -* NOTICE *- 21:50:33.305 - 32908518 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT10
  1694. -* NOTICE *- 21:50:33.305 - 32908552 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT10
  1695. -* NOTICE *- 21:50:33.305 - 32908574 - FormatCmdLine::GetNextLine() - Processing line number: 423
  1696. -* NOTICE *- 21:50:33.305 - 32908594 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT10" Threshold
  1697. -* NOTICE *- 21:50:33.305 - 32908614 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 423, Command Line: -SetSpikeDetectionType "TT10" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1698. -* NOTICE *- 21:50:33.305 - 32908662 - FormatCmdLine::GetNextLine() - Processing line number: 424
  1699. -* NOTICE *- 21:50:33.305 - 32908682 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT10" 0 100 160
  1700. -* NOTICE *- 21:50:33.305 - 32908704 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 424, Command Line: -SetSpikeSlope "TT10" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1701. -* NOTICE *- 21:50:33.305 - 32908756 - FormatCmdLine::GetNextLine() - Processing line number: 425
  1702. -* NOTICE *- 21:50:33.305 - 32908774 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT10" 1 100 160
  1703. -* NOTICE *- 21:50:33.305 - 32908796 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 425, Command Line: -SetSpikeSlope "TT10" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1704. -* NOTICE *- 21:50:33.305 - 32908846 - FormatCmdLine::GetNextLine() - Processing line number: 426
  1705. -* NOTICE *- 21:50:33.305 - 32908866 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT10" 2 100 160
  1706. -* NOTICE *- 21:50:33.305 - 32908892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 426, Command Line: -SetSpikeSlope "TT10" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1707. -* NOTICE *- 21:50:33.306 - 32908948 - FormatCmdLine::GetNextLine() - Processing line number: 427
  1708. -* NOTICE *- 21:50:33.306 - 32908970 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT10" 3 100 160
  1709. -* NOTICE *- 21:50:33.306 - 32908992 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 427, Command Line: -SetSpikeSlope "TT10" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1710. -* NOTICE *- 21:50:33.306 - 32909042 - FormatCmdLine::GetNextLine() - Processing line number: 428
  1711. -* NOTICE *- 21:50:33.306 - 32909062 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT10" False
  1712. -* NOTICE *- 21:50:33.306 - 32909084 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 428, Command Line: -SetSpikeDualThresholding "TT10" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1713. -* NOTICE *- 21:50:33.306 - 32909130 - FormatCmdLine::GetNextLine() - Processing line number: 429
  1714. -* NOTICE *- 21:50:33.306 - 32909150 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT10" 750
  1715. -* NOTICE *- 21:50:33.306 - 32909172 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 429, Command Line: -SetSpikeRetriggerTime "TT10" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1716. -* NOTICE *- 21:50:33.306 - 32909214 - FormatCmdLine::GetNextLine() - Processing line number: 430
  1717. -* NOTICE *- 21:50:33.306 - 32909234 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT10" 8
  1718. -* NOTICE *- 21:50:33.306 - 32909256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 430, Command Line: -SetSpikeAlignmentPoint "TT10" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1719. -* NOTICE *- 21:50:33.306 - 32909298 - FormatCmdLine::GetNextLine() - Processing line number: 431
  1720. -* NOTICE *- 21:50:33.306 - 32909318 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT10" 0 True
  1721. -* NOTICE *- 21:50:33.306 - 32909340 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 431, Command Line: -SetSubChannelEnabled "TT10" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1722. -* NOTICE *- 21:50:33.306 - 32909380 - FormatCmdLine::GetNextLine() - Processing line number: 432
  1723. -* NOTICE *- 21:50:33.306 - 32909400 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT10" 1 True
  1724. -* NOTICE *- 21:50:33.306 - 32909422 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 432, Command Line: -SetSubChannelEnabled "TT10" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1725. -* NOTICE *- 21:50:33.306 - 32909464 - FormatCmdLine::GetNextLine() - Processing line number: 433
  1726. -* NOTICE *- 21:50:33.306 - 32909482 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT10" 2 True
  1727. -* NOTICE *- 21:50:33.306 - 32909504 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 433, Command Line: -SetSubChannelEnabled "TT10" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1728. -* NOTICE *- 21:50:33.306 - 32909544 - FormatCmdLine::GetNextLine() - Processing line number: 434
  1729. -* NOTICE *- 21:50:33.306 - 32909564 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT10" 3 True
  1730. -* NOTICE *- 21:50:33.306 - 32909586 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 434, Command Line: -SetSubChannelEnabled "TT10" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1731. -* NOTICE *- 21:50:33.306 - 32909632 - FormatCmdLine::GetNextLine() - Processing line number: 435
  1732. -* NOTICE *- 21:50:33.306 - 32909654 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Peak 0 0 0 31
  1733. -* NOTICE *- 21:50:33.306 - 32909676 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 435, Command Line: -SetWaveformFeature "TT10" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1734. -* NOTICE *- 21:50:33.306 - 32909732 - FormatCmdLine::GetNextLine() - Processing line number: 436
  1735. -* NOTICE *- 21:50:33.306 - 32909754 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Peak 1 1 0 31
  1736. -* NOTICE *- 21:50:33.306 - 32909776 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 436, Command Line: -SetWaveformFeature "TT10" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1737. -* NOTICE *- 21:50:33.306 - 32909830 - FormatCmdLine::GetNextLine() - Processing line number: 437
  1738. -* NOTICE *- 21:50:33.306 - 32909852 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Peak 2 2 0 31
  1739. -* NOTICE *- 21:50:33.306 - 32909874 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 437, Command Line: -SetWaveformFeature "TT10" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1740. -* NOTICE *- 21:50:33.307 - 32909932 - FormatCmdLine::GetNextLine() - Processing line number: 438
  1741. -* NOTICE *- 21:50:33.307 - 32909954 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Peak 3 3 0 31
  1742. -* NOTICE *- 21:50:33.307 - 32909976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 438, Command Line: -SetWaveformFeature "TT10" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1743. -* NOTICE *- 21:50:33.307 - 32910032 - FormatCmdLine::GetNextLine() - Processing line number: 439
  1744. -* NOTICE *- 21:50:33.307 - 32910052 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Valley 4 0 0 31
  1745. -* NOTICE *- 21:50:33.307 - 32910074 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 439, Command Line: -SetWaveformFeature "TT10" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1746. -* NOTICE *- 21:50:33.307 - 32910130 - FormatCmdLine::GetNextLine() - Processing line number: 440
  1747. -* NOTICE *- 21:50:33.307 - 32910150 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Valley 5 1 0 31
  1748. -* NOTICE *- 21:50:33.307 - 32910172 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 440, Command Line: -SetWaveformFeature "TT10" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1749. -* NOTICE *- 21:50:33.307 - 32910228 - FormatCmdLine::GetNextLine() - Processing line number: 441
  1750. -* NOTICE *- 21:50:33.307 - 32910248 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Valley 6 2 0 31
  1751. -* NOTICE *- 21:50:33.307 - 32910272 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 441, Command Line: -SetWaveformFeature "TT10" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1752. -* NOTICE *- 21:50:33.307 - 32910326 - FormatCmdLine::GetNextLine() - Processing line number: 442
  1753. -* NOTICE *- 21:50:33.307 - 32910348 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT10" Valley 7 3 0 31
  1754. -* NOTICE *- 21:50:33.307 - 32910370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 442, Command Line: -SetWaveformFeature "TT10" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1755. -* NOTICE *- 21:50:33.307 - 32910424 - FormatCmdLine::GetNextLine() - Processing line number: 443
  1756. -* NOTICE *- 21:50:33.307 - 32910518 - FormatCmdLine::GetNextLine() - Processing line:
  1757. -* NOTICE *- 21:50:33.307 - 32910542 - FormatCmdLine::GetNextLine() - Processing line number: 444
  1758. -* NOTICE *- 21:50:33.307 - 32910560 - FormatCmdLine::GetNextLine() - Processing line:
  1759. -* NOTICE *- 21:50:33.307 - 32910580 - FormatCmdLine::GetNextLine() - Processing line number: 445
  1760. -* NOTICE *- 21:50:33.307 - 32910598 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT11"
  1761. -* NOTICE *- 21:50:33.307 - 32910618 - FormatCmdLine::GetNextLine() - Processing line number: 446
  1762. -* NOTICE *- 21:50:33.307 - 32910636 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT11" "AcqSystem1" 4
  1763. -* NOTICE *- 21:50:33.307 - 32910658 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 446, Command Line: -CreateSpikeAcqEnt "TT11" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1764. -* NOTICE *- 21:50:33.308 - 32910928 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE TT11. Channel Count: 4
  1765. -* NOTICE *- 21:50:33.309 - 32912324 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT11
  1766. -* NOTICE *- 21:50:33.309 - 32912372 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT11
  1767. -* NOTICE *- 21:50:33.309 - 32912412 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT11
  1768. -* NOTICE *- 21:50:33.309 - 32912450 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT11
  1769. -* NOTICE *- 21:50:33.309 - 32912478 - FormatCmdLine::GetNextLine() - Processing line number: 447
  1770. -* NOTICE *- 21:50:33.309 - 32912498 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT11" True
  1771. -* NOTICE *- 21:50:33.309 - 32912520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 447, Command Line: -SetAcqEntProcessingEnabled "TT11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1772. -* NOTICE *- 21:50:33.309 - 32912562 - FormatCmdLine::GetNextLine() - Processing line number: 448
  1773. -* NOTICE *- 21:50:33.309 - 32912582 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT11" 50 50 49 48
  1774. -* NOTICE *- 21:50:33.309 - 32912604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 448, Command Line: -SetChannelNumber "TT11" 50 50 49 48, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1775. -* NOTICE *- 21:50:33.309 - 32912680 - FormatCmdLine::GetNextLine() - Processing line number: 449
  1776. -* NOTICE *- 21:50:33.309 - 32912702 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT11" 8
  1777. -* NOTICE *- 21:50:33.309 - 32912724 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 449, Command Line: -SetAcqEntReference "TT11" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1778. -* NOTICE *- 21:50:33.309 - 32912814 - DRSController::SendDRSCommand() - DRS Command(b3 crs 18 0 ) about to be sent.
  1779. -* NOTICE *- 21:50:33.309 - 32912896 - DRSController::SendDRSCommand() - DRS Command(b3 crs 17 0 ) about to be sent.
  1780. -* NOTICE *- 21:50:33.310 - 32912974 - DRSController::SendDRSCommand() - DRS Command(b3 crs 16 0 ) about to be sent.
  1781. -* NOTICE *- 21:50:33.310 - 32913026 - FormatCmdLine::GetNextLine() - Processing line number: 450
  1782. -* NOTICE *- 21:50:33.310 - 32913050 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT11" 250 250 250 250
  1783. -* NOTICE *- 21:50:33.310 - 32913074 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 450, Command Line: -SetInputRange "TT11" 250 250 250 250, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1784. -* NOTICE *- 21:50:33.310 - 32913144 - FormatCmdLine::GetNextLine() - Processing line number: 451
  1785. -* NOTICE *- 21:50:33.310 - 32913166 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT11" 1
  1786. -* NOTICE *- 21:50:33.310 - 32913188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 451, Command Line: -SetSubSamplingInterleave "TT11" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1787. -* NOTICE *- 21:50:33.310 - 32913236 - FormatCmdLine::GetNextLine() - Processing line number: 452
  1788. -* NOTICE *- 21:50:33.310 - 32913256 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT11" True
  1789. -* NOTICE *- 21:50:33.310 - 32913280 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 452, Command Line: -SetDspLowCutFilterEnabled "TT11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1790. -* NOTICE *- 21:50:33.310 - 32913614 - FormatCmdLine::GetNextLine() - Processing line number: 453
  1791. -* NOTICE *- 21:50:33.310 - 32913640 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT11" 600
  1792. -* NOTICE *- 21:50:33.310 - 32913664 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 453, Command Line: -SetDspLowCutFrequency "TT11" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1793. -* NOTICE *- 21:50:33.310 - 32913876 - FormatCmdLine::GetNextLine() - Processing line number: 454
  1794. -* NOTICE *- 21:50:33.310 - 32913898 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT11" 64
  1795. -* NOTICE *- 21:50:33.311 - 32913924 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 454, Command Line: -SetDspLowCutNumberTaps "TT11" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1796. -* NOTICE *- 21:50:33.311 - 32914132 - FormatCmdLine::GetNextLine() - Processing line number: 455
  1797. -* NOTICE *- 21:50:33.311 - 32914154 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT11" True
  1798. -* NOTICE *- 21:50:33.311 - 32914178 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 455, Command Line: -SetDspHighCutFilterEnabled "TT11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1799. -* NOTICE *- 21:50:33.311 - 32914402 - FormatCmdLine::GetNextLine() - Processing line number: 456
  1800. -* NOTICE *- 21:50:33.311 - 32914426 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT11" 6000
  1801. -* NOTICE *- 21:50:33.311 - 32914450 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 456, Command Line: -SetDspHighCutFrequency "TT11" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1802. -* NOTICE *- 21:50:33.311 - 32914586 - FormatCmdLine::GetNextLine() - Processing line number: 457
  1803. -* NOTICE *- 21:50:33.311 - 32914608 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT11" 32
  1804. -* NOTICE *- 21:50:33.311 - 32914630 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 457, Command Line: -SetDspHighCutNumberTaps "TT11" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1805. -* NOTICE *- 21:50:33.311 - 32914762 - FormatCmdLine::GetNextLine() - Processing line number: 458
  1806. -* NOTICE *- 21:50:33.311 - 32914784 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT11" True
  1807. -* NOTICE *- 21:50:33.311 - 32914806 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 458, Command Line: -SetInputInverted "TT11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1808. -* NOTICE *- 21:50:33.311 - 32914846 - FormatCmdLine::GetNextLine() - Processing line number: 459
  1809. -* NOTICE *- 21:50:33.311 - 32914866 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT11" True
  1810. -* NOTICE *- 21:50:33.311 - 32914890 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 459, Command Line: -SetDiskWriteEnabled "TT11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1811. -* NOTICE *- 21:50:33.312 - 32914934 - FormatCmdLine::GetNextLine() - Processing line number: 460
  1812. -* NOTICE *- 21:50:33.312 - 32914956 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT11" False
  1813. -* NOTICE *- 21:50:33.312 - 32914978 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 460, Command Line: -SetNetComDataBufferingEnabled "TT11" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1814. -* NOTICE *- 21:50:33.312 - 32915018 - FormatCmdLine::GetNextLine() - Processing line number: 461
  1815. -* NOTICE *- 21:50:33.312 - 32915038 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT11" 3000
  1816. -* NOTICE *- 21:50:33.312 - 32915060 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 461, Command Line: -SetNetComDataBufferSize "TT11" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1817. -* NOTICE *- 21:50:33.312 - 32915102 - FormatCmdLine::GetNextLine() - Processing line number: 462
  1818. -* NOTICE *- 21:50:33.312 - 32915122 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT11" 40 40 40 40
  1819. -* NOTICE *- 21:50:33.312 - 32915144 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 462, Command Line: -SetSpikeThreshold "TT11" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1820. -* NOTICE *- 21:50:33.312 - 32915200 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT11
  1821. -* NOTICE *- 21:50:33.312 - 32915236 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT11
  1822. -* NOTICE *- 21:50:33.312 - 32915270 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT11
  1823. -* NOTICE *- 21:50:33.312 - 32915304 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT11
  1824. -* NOTICE *- 21:50:33.312 - 32915328 - FormatCmdLine::GetNextLine() - Processing line number: 463
  1825. -* NOTICE *- 21:50:33.312 - 32915346 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT11" Threshold
  1826. -* NOTICE *- 21:50:33.312 - 32915368 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 463, Command Line: -SetSpikeDetectionType "TT11" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1827. -* NOTICE *- 21:50:33.312 - 32915416 - FormatCmdLine::GetNextLine() - Processing line number: 464
  1828. -* NOTICE *- 21:50:33.312 - 32915436 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT11" 0 100 160
  1829. -* NOTICE *- 21:50:33.312 - 32915648 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 464, Command Line: -SetSpikeSlope "TT11" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1830. -* NOTICE *- 21:50:33.312 - 32915704 - FormatCmdLine::GetNextLine() - Processing line number: 465
  1831. -* NOTICE *- 21:50:33.312 - 32915724 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT11" 1 100 160
  1832. -* NOTICE *- 21:50:33.312 - 32915746 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 465, Command Line: -SetSpikeSlope "TT11" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1833. -* NOTICE *- 21:50:33.312 - 32915796 - FormatCmdLine::GetNextLine() - Processing line number: 466
  1834. -* NOTICE *- 21:50:33.312 - 32915816 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT11" 2 100 160
  1835. -* NOTICE *- 21:50:33.312 - 32915838 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 466, Command Line: -SetSpikeSlope "TT11" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1836. -* NOTICE *- 21:50:33.312 - 32915908 - FormatCmdLine::GetNextLine() - Processing line number: 467
  1837. -* NOTICE *- 21:50:33.313 - 32915934 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT11" 3 100 160
  1838. -* NOTICE *- 21:50:33.313 - 32915956 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 467, Command Line: -SetSpikeSlope "TT11" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1839. -* NOTICE *- 21:50:33.313 - 32916006 - FormatCmdLine::GetNextLine() - Processing line number: 468
  1840. -* NOTICE *- 21:50:33.313 - 32916026 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT11" False
  1841. -* NOTICE *- 21:50:33.313 - 32916048 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 468, Command Line: -SetSpikeDualThresholding "TT11" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1842. -* NOTICE *- 21:50:33.313 - 32916094 - FormatCmdLine::GetNextLine() - Processing line number: 469
  1843. -* NOTICE *- 21:50:33.313 - 32916114 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT11" 750
  1844. -* NOTICE *- 21:50:33.313 - 32916136 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 469, Command Line: -SetSpikeRetriggerTime "TT11" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1845. -* NOTICE *- 21:50:33.313 - 32916180 - FormatCmdLine::GetNextLine() - Processing line number: 470
  1846. -* NOTICE *- 21:50:33.313 - 32916200 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT11" 8
  1847. -* NOTICE *- 21:50:33.313 - 32916222 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 470, Command Line: -SetSpikeAlignmentPoint "TT11" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1848. -* NOTICE *- 21:50:33.313 - 32916264 - FormatCmdLine::GetNextLine() - Processing line number: 471
  1849. -* NOTICE *- 21:50:33.313 - 32916284 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT11" 0 False
  1850. -* NOTICE *- 21:50:33.313 - 32916306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 471, Command Line: -SetSubChannelEnabled "TT11" 0 False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1851. -* NOTICE *- 21:50:33.313 - 32916354 - ADAcqEnt::SetSubChannelEnabled() - Channel 0 has been DISABLED. AE Name: TT11
  1852. -* NOTICE *- 21:50:33.313 - 32916378 - FormatCmdLine::GetNextLine() - Processing line number: 472
  1853. -* NOTICE *- 21:50:33.313 - 32916398 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT11" 1 True
  1854. -* NOTICE *- 21:50:33.313 - 32916420 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 472, Command Line: -SetSubChannelEnabled "TT11" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1855. -* NOTICE *- 21:50:33.313 - 32916460 - FormatCmdLine::GetNextLine() - Processing line number: 473
  1856. -* NOTICE *- 21:50:33.313 - 32916480 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT11" 2 True
  1857. -* NOTICE *- 21:50:33.313 - 32916502 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 473, Command Line: -SetSubChannelEnabled "TT11" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1858. -* NOTICE *- 21:50:33.313 - 32916544 - FormatCmdLine::GetNextLine() - Processing line number: 474
  1859. -* NOTICE *- 21:50:33.313 - 32916562 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT11" 3 True
  1860. -* NOTICE *- 21:50:33.313 - 32916584 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 474, Command Line: -SetSubChannelEnabled "TT11" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1861. -* NOTICE *- 21:50:33.313 - 32916628 - FormatCmdLine::GetNextLine() - Processing line number: 475
  1862. -* NOTICE *- 21:50:33.313 - 32916646 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Peak 0 0 0 31
  1863. -* NOTICE *- 21:50:33.313 - 32916670 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 475, Command Line: -SetWaveformFeature "TT11" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1864. -* NOTICE *- 21:50:33.313 - 32916726 - FormatCmdLine::GetNextLine() - Processing line number: 476
  1865. -* NOTICE *- 21:50:33.313 - 32916746 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Peak 1 1 0 31
  1866. -* NOTICE *- 21:50:33.313 - 32916768 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 476, Command Line: -SetWaveformFeature "TT11" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1867. -* NOTICE *- 21:50:33.313 - 32916824 - FormatCmdLine::GetNextLine() - Processing line number: 477
  1868. -* NOTICE *- 21:50:33.313 - 32916844 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Peak 2 2 0 31
  1869. -* NOTICE *- 21:50:33.313 - 32916866 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 477, Command Line: -SetWaveformFeature "TT11" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1870. -* NOTICE *- 21:50:33.314 - 32916924 - FormatCmdLine::GetNextLine() - Processing line number: 478
  1871. -* NOTICE *- 21:50:33.314 - 32916946 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Peak 3 3 0 31
  1872. -* NOTICE *- 21:50:33.314 - 32916968 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 478, Command Line: -SetWaveformFeature "TT11" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1873. -* NOTICE *- 21:50:33.314 - 32917022 - FormatCmdLine::GetNextLine() - Processing line number: 479
  1874. -* NOTICE *- 21:50:33.314 - 32917042 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Valley 4 0 0 31
  1875. -* NOTICE *- 21:50:33.314 - 32917064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 479, Command Line: -SetWaveformFeature "TT11" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1876. -* NOTICE *- 21:50:33.314 - 32917122 - FormatCmdLine::GetNextLine() - Processing line number: 480
  1877. -* NOTICE *- 21:50:33.314 - 32917142 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Valley 5 1 0 31
  1878. -* NOTICE *- 21:50:33.314 - 32917164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 480, Command Line: -SetWaveformFeature "TT11" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1879. -* NOTICE *- 21:50:33.314 - 32917222 - FormatCmdLine::GetNextLine() - Processing line number: 481
  1880. -* NOTICE *- 21:50:33.314 - 32917242 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Valley 6 2 0 31
  1881. -* NOTICE *- 21:50:33.314 - 32917264 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 481, Command Line: -SetWaveformFeature "TT11" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1882. -* NOTICE *- 21:50:33.314 - 32917322 - FormatCmdLine::GetNextLine() - Processing line number: 482
  1883. -* NOTICE *- 21:50:33.314 - 32917342 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT11" Valley 7 3 0 31
  1884. -* NOTICE *- 21:50:33.314 - 32917364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 482, Command Line: -SetWaveformFeature "TT11" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1885. -* NOTICE *- 21:50:33.314 - 32917418 - FormatCmdLine::GetNextLine() - Processing line number: 483
  1886. -* NOTICE *- 21:50:33.314 - 32917440 - FormatCmdLine::GetNextLine() - Processing line:
  1887. -* NOTICE *- 21:50:33.314 - 32917460 - FormatCmdLine::GetNextLine() - Processing line number: 484
  1888. -* NOTICE *- 21:50:33.314 - 32917478 - FormatCmdLine::GetNextLine() - Processing line:
  1889. -* NOTICE *- 21:50:33.314 - 32917496 - FormatCmdLine::GetNextLine() - Processing line number: 485
  1890. -* NOTICE *- 21:50:33.314 - 32917516 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "TT12"
  1891. -* NOTICE *- 21:50:33.314 - 32917536 - FormatCmdLine::GetNextLine() - Processing line number: 486
  1892. -* NOTICE *- 21:50:33.314 - 32917554 - FormatCmdLine::GetNextLine() - Processing line: -CreateSpikeAcqEnt "TT12" "AcqSystem1" 4
  1893. -* NOTICE *- 21:50:33.314 - 32917576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 486, Command Line: -CreateSpikeAcqEnt "TT12" "AcqSystem1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1894. -* NOTICE *- 21:50:33.314 - 32917840 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE TT12. Channel Count: 4
  1895. -* NOTICE *- 21:50:33.316 - 32919248 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 0. AE Name: TT12
  1896. -* NOTICE *- 21:50:33.316 - 32919296 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 1. AE Name: TT12
  1897. -* NOTICE *- 21:50:33.316 - 32919334 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 2. AE Name: TT12
  1898. -* NOTICE *- 21:50:33.316 - 32919370 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 250 µV for sub channel 3. AE Name: TT12
  1899. -* NOTICE *- 21:50:33.316 - 32919400 - FormatCmdLine::GetNextLine() - Processing line number: 487
  1900. -* NOTICE *- 21:50:33.316 - 32919418 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "TT12" True
  1901. -* NOTICE *- 21:50:33.316 - 32919442 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 487, Command Line: -SetAcqEntProcessingEnabled "TT12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1902. -* NOTICE *- 21:50:33.316 - 32919484 - FormatCmdLine::GetNextLine() - Processing line number: 488
  1903. -* NOTICE *- 21:50:33.316 - 32919504 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "TT12" 36 37 38 39
  1904. -* NOTICE *- 21:50:33.316 - 32919526 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 488, Command Line: -SetChannelNumber "TT12" 36 37 38 39, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1905. -* NOTICE *- 21:50:33.316 - 32919602 - FormatCmdLine::GetNextLine() - Processing line number: 489
  1906. -* NOTICE *- 21:50:33.316 - 32919624 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "TT12" 8
  1907. -* NOTICE *- 21:50:33.316 - 32919646 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 489, Command Line: -SetAcqEntReference "TT12" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1908. -* NOTICE *- 21:50:33.316 - 32919740 - DRSController::SendDRSCommand() - DRS Command(b3 crs 4 0 ) about to be sent.
  1909. -* NOTICE *- 21:50:33.316 - 32919820 - DRSController::SendDRSCommand() - DRS Command(b3 crs 5 0 ) about to be sent.
  1910. -* NOTICE *- 21:50:33.316 - 32919896 - DRSController::SendDRSCommand() - DRS Command(b3 crs 6 0 ) about to be sent.
  1911. -* NOTICE *- 21:50:33.317 - 32919972 - DRSController::SendDRSCommand() - DRS Command(b3 crs 7 0 ) about to be sent.
  1912. -* NOTICE *- 21:50:33.317 - 32920024 - FormatCmdLine::GetNextLine() - Processing line number: 490
  1913. -* NOTICE *- 21:50:33.317 - 32920048 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "TT12" 150 150 150 150
  1914. -* NOTICE *- 21:50:33.317 - 32920070 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 490, Command Line: -SetInputRange "TT12" 150 150 150 150, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1915. -* NOTICE *- 21:50:33.317 - 32920134 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 0. AE Name: TT12
  1916. -* NOTICE *- 21:50:33.317 - 32920176 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 1. AE Name: TT12
  1917. -* NOTICE *- 21:50:33.317 - 32920214 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 2. AE Name: TT12
  1918. -* NOTICE *- 21:50:33.317 - 32920252 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 150 µV for sub channel 3. AE Name: TT12
  1919. -* NOTICE *- 21:50:33.317 - 32920276 - FormatCmdLine::GetNextLine() - Processing line number: 491
  1920. -* NOTICE *- 21:50:33.317 - 32920296 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "TT12" 1
  1921. -* NOTICE *- 21:50:33.317 - 32920318 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 491, Command Line: -SetSubSamplingInterleave "TT12" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1922. -* NOTICE *- 21:50:33.317 - 32920366 - FormatCmdLine::GetNextLine() - Processing line number: 492
  1923. -* NOTICE *- 21:50:33.317 - 32920386 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "TT12" True
  1924. -* NOTICE *- 21:50:33.317 - 32920410 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 492, Command Line: -SetDspLowCutFilterEnabled "TT12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1925. -* NOTICE *- 21:50:33.317 - 32920744 - FormatCmdLine::GetNextLine() - Processing line number: 493
  1926. -* NOTICE *- 21:50:33.317 - 32920768 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "TT12" 600
  1927. -* NOTICE *- 21:50:33.317 - 32920792 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 493, Command Line: -SetDspLowCutFrequency "TT12" 600, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1928. -* NOTICE *- 21:50:33.318 - 32921004 - FormatCmdLine::GetNextLine() - Processing line number: 494
  1929. -* NOTICE *- 21:50:33.318 - 32921028 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "TT12" 64
  1930. -* NOTICE *- 21:50:33.318 - 32921050 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 494, Command Line: -SetDspLowCutNumberTaps "TT12" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1931. -* NOTICE *- 21:50:33.318 - 32921256 - FormatCmdLine::GetNextLine() - Processing line number: 495
  1932. -* NOTICE *- 21:50:33.318 - 32921278 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "TT12" True
  1933. -* NOTICE *- 21:50:33.318 - 32921300 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 495, Command Line: -SetDspHighCutFilterEnabled "TT12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1934. -* NOTICE *- 21:50:33.318 - 32921520 - FormatCmdLine::GetNextLine() - Processing line number: 496
  1935. -* NOTICE *- 21:50:33.318 - 32921542 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "TT12" 6000
  1936. -* NOTICE *- 21:50:33.318 - 32921566 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 496, Command Line: -SetDspHighCutFrequency "TT12" 6000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1937. -* NOTICE *- 21:50:33.318 - 32921700 - FormatCmdLine::GetNextLine() - Processing line number: 497
  1938. -* NOTICE *- 21:50:33.318 - 32921722 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "TT12" 32
  1939. -* NOTICE *- 21:50:33.318 - 32921746 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 497, Command Line: -SetDspHighCutNumberTaps "TT12" 32, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1940. -* NOTICE *- 21:50:33.318 - 32921880 - FormatCmdLine::GetNextLine() - Processing line number: 498
  1941. -* NOTICE *- 21:50:33.318 - 32921902 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "TT12" True
  1942. -* NOTICE *- 21:50:33.319 - 32921938 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 498, Command Line: -SetInputInverted "TT12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1943. -* NOTICE *- 21:50:33.319 - 32921984 - FormatCmdLine::GetNextLine() - Processing line number: 499
  1944. -* NOTICE *- 21:50:33.319 - 32922004 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "TT12" True
  1945. -* NOTICE *- 21:50:33.319 - 32922026 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 499, Command Line: -SetDiskWriteEnabled "TT12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1946. -* NOTICE *- 21:50:33.319 - 32922068 - FormatCmdLine::GetNextLine() - Processing line number: 500
  1947. -* NOTICE *- 21:50:33.319 - 32922088 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "TT12" False
  1948. -* NOTICE *- 21:50:33.319 - 32922110 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 500, Command Line: -SetNetComDataBufferingEnabled "TT12" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1949. -* NOTICE *- 21:50:33.319 - 32922152 - FormatCmdLine::GetNextLine() - Processing line number: 501
  1950. -* NOTICE *- 21:50:33.319 - 32922170 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "TT12" 3000
  1951. -* NOTICE *- 21:50:33.319 - 32922192 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 501, Command Line: -SetNetComDataBufferSize "TT12" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1952. -* NOTICE *- 21:50:33.319 - 32922234 - FormatCmdLine::GetNextLine() - Processing line number: 502
  1953. -* NOTICE *- 21:50:33.319 - 32922254 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeThreshold "TT12" 40 40 40 40
  1954. -* NOTICE *- 21:50:33.319 - 32922276 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 502, Command Line: -SetSpikeThreshold "TT12" 40 40 40 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1955. -* NOTICE *- 21:50:33.319 - 32922332 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT12
  1956. -* NOTICE *- 21:50:33.319 - 32922368 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT12
  1957. -* NOTICE *- 21:50:33.319 - 32922404 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT12
  1958. -* NOTICE *- 21:50:33.319 - 32922438 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT12
  1959. -* NOTICE *- 21:50:33.319 - 32922462 - FormatCmdLine::GetNextLine() - Processing line number: 503
  1960. -* NOTICE *- 21:50:33.319 - 32922480 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDetectionType "TT12" Threshold
  1961. -* NOTICE *- 21:50:33.319 - 32922502 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 503, Command Line: -SetSpikeDetectionType "TT12" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1962. -* NOTICE *- 21:50:33.319 - 32922550 - FormatCmdLine::GetNextLine() - Processing line number: 504
  1963. -* NOTICE *- 21:50:33.319 - 32922570 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT12" 0 100 160
  1964. -* NOTICE *- 21:50:33.319 - 32922592 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 504, Command Line: -SetSpikeSlope "TT12" 0 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1965. -* NOTICE *- 21:50:33.319 - 32922644 - FormatCmdLine::GetNextLine() - Processing line number: 505
  1966. -* NOTICE *- 21:50:33.319 - 32922668 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT12" 1 100 160
  1967. -* NOTICE *- 21:50:33.319 - 32922692 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 505, Command Line: -SetSpikeSlope "TT12" 1 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1968. -* NOTICE *- 21:50:33.319 - 32922744 - FormatCmdLine::GetNextLine() - Processing line number: 506
  1969. -* NOTICE *- 21:50:33.319 - 32922764 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT12" 2 100 160
  1970. -* NOTICE *- 21:50:33.319 - 32922786 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 506, Command Line: -SetSpikeSlope "TT12" 2 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1971. -* NOTICE *- 21:50:33.319 - 32922838 - FormatCmdLine::GetNextLine() - Processing line number: 507
  1972. -* NOTICE *- 21:50:33.319 - 32922856 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeSlope "TT12" 3 100 160
  1973. -* NOTICE *- 21:50:33.319 - 32922880 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 507, Command Line: -SetSpikeSlope "TT12" 3 100 160, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1974. -* NOTICE *- 21:50:33.320 - 32922934 - FormatCmdLine::GetNextLine() - Processing line number: 508
  1975. -* NOTICE *- 21:50:33.320 - 32922954 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeDualThresholding "TT12" False
  1976. -* NOTICE *- 21:50:33.320 - 32922976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 508, Command Line: -SetSpikeDualThresholding "TT12" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1977. -* NOTICE *- 21:50:33.320 - 32923022 - FormatCmdLine::GetNextLine() - Processing line number: 509
  1978. -* NOTICE *- 21:50:33.320 - 32923042 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeRetriggerTime "TT12" 750
  1979. -* NOTICE *- 21:50:33.320 - 32923064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 509, Command Line: -SetSpikeRetriggerTime "TT12" 750, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1980. -* NOTICE *- 21:50:33.320 - 32923106 - FormatCmdLine::GetNextLine() - Processing line number: 510
  1981. -* NOTICE *- 21:50:33.320 - 32923126 - FormatCmdLine::GetNextLine() - Processing line: -SetSpikeAlignmentPoint "TT12" 8
  1982. -* NOTICE *- 21:50:33.320 - 32923148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 510, Command Line: -SetSpikeAlignmentPoint "TT12" 8, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1983. -* NOTICE *- 21:50:33.320 - 32923192 - FormatCmdLine::GetNextLine() - Processing line number: 511
  1984. -* NOTICE *- 21:50:33.320 - 32923210 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT12" 0 True
  1985. -* NOTICE *- 21:50:33.320 - 32923232 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 511, Command Line: -SetSubChannelEnabled "TT12" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1986. -* NOTICE *- 21:50:33.320 - 32923274 - FormatCmdLine::GetNextLine() - Processing line number: 512
  1987. -* NOTICE *- 21:50:33.320 - 32923294 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT12" 1 True
  1988. -* NOTICE *- 21:50:33.320 - 32923316 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 512, Command Line: -SetSubChannelEnabled "TT12" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1989. -* NOTICE *- 21:50:33.320 - 32923356 - FormatCmdLine::GetNextLine() - Processing line number: 513
  1990. -* NOTICE *- 21:50:33.320 - 32923376 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT12" 2 True
  1991. -* NOTICE *- 21:50:33.320 - 32923398 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 513, Command Line: -SetSubChannelEnabled "TT12" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1992. -* NOTICE *- 21:50:33.320 - 32923444 - FormatCmdLine::GetNextLine() - Processing line number: 514
  1993. -* NOTICE *- 21:50:33.320 - 32923466 - FormatCmdLine::GetNextLine() - Processing line: -SetSubChannelEnabled "TT12" 3 True
  1994. -* NOTICE *- 21:50:33.320 - 32923488 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 514, Command Line: -SetSubChannelEnabled "TT12" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1995. -* NOTICE *- 21:50:33.320 - 32923530 - FormatCmdLine::GetNextLine() - Processing line number: 515
  1996. -* NOTICE *- 21:50:33.320 - 32923548 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Peak 0 0 0 31
  1997. -* NOTICE *- 21:50:33.320 - 32923570 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 515, Command Line: -SetWaveformFeature "TT12" Peak 0 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  1998. -* NOTICE *- 21:50:33.320 - 32923628 - FormatCmdLine::GetNextLine() - Processing line number: 516
  1999. -* NOTICE *- 21:50:33.320 - 32923648 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Peak 1 1 0 31
  2000. -* NOTICE *- 21:50:33.320 - 32923670 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 516, Command Line: -SetWaveformFeature "TT12" Peak 1 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2001. -* NOTICE *- 21:50:33.320 - 32923726 - FormatCmdLine::GetNextLine() - Processing line number: 517
  2002. -* NOTICE *- 21:50:33.320 - 32923748 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Peak 2 2 0 31
  2003. -* NOTICE *- 21:50:33.320 - 32923768 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 517, Command Line: -SetWaveformFeature "TT12" Peak 2 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2004. -* NOTICE *- 21:50:33.320 - 32923826 - FormatCmdLine::GetNextLine() - Processing line number: 518
  2005. -* NOTICE *- 21:50:33.320 - 32923846 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Peak 3 3 0 31
  2006. -* NOTICE *- 21:50:33.320 - 32923868 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 518, Command Line: -SetWaveformFeature "TT12" Peak 3 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2007. -* NOTICE *- 21:50:33.321 - 32923926 - FormatCmdLine::GetNextLine() - Processing line number: 519
  2008. -* NOTICE *- 21:50:33.321 - 32923948 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Valley 4 0 0 31
  2009. -* NOTICE *- 21:50:33.321 - 32923970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 519, Command Line: -SetWaveformFeature "TT12" Valley 4 0 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2010. -* NOTICE *- 21:50:33.321 - 32924026 - FormatCmdLine::GetNextLine() - Processing line number: 520
  2011. -* NOTICE *- 21:50:33.321 - 32924048 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Valley 5 1 0 31
  2012. -* NOTICE *- 21:50:33.321 - 32924070 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 520, Command Line: -SetWaveformFeature "TT12" Valley 5 1 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2013. -* NOTICE *- 21:50:33.321 - 32924126 - FormatCmdLine::GetNextLine() - Processing line number: 521
  2014. -* NOTICE *- 21:50:33.321 - 32924146 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Valley 6 2 0 31
  2015. -* NOTICE *- 21:50:33.321 - 32924168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 521, Command Line: -SetWaveformFeature "TT12" Valley 6 2 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2016. -* NOTICE *- 21:50:33.321 - 32924230 - FormatCmdLine::GetNextLine() - Processing line number: 522
  2017. -* NOTICE *- 21:50:33.321 - 32924252 - FormatCmdLine::GetNextLine() - Processing line: -SetWaveformFeature "TT12" Valley 7 3 0 31
  2018. -* NOTICE *- 21:50:33.321 - 32924274 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 522, Command Line: -SetWaveformFeature "TT12" Valley 7 3 0 31 , Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2019. -* NOTICE *- 21:50:33.321 - 32924330 - FormatCmdLine::GetNextLine() - Processing line number: 523
  2020. -* NOTICE *- 21:50:33.321 - 32924350 - FormatCmdLine::GetNextLine() - Processing line:
  2021. -* NOTICE *- 21:50:33.321 - 32924368 - FormatCmdLine::GetNextLine() - Processing line number: 524
  2022. -* NOTICE *- 21:50:33.321 - 32924386 - FormatCmdLine::GetNextLine() - Processing line:
  2023. -* NOTICE *- 21:50:33.321 - 32924406 - FormatCmdLine::GetNextLine() - Processing line number: 525
  2024. -* NOTICE *- 21:50:33.321 - 32924424 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC1"
  2025. -* NOTICE *- 21:50:33.321 - 32924442 - FormatCmdLine::GetNextLine() - Processing line number: 526
  2026. -* NOTICE *- 21:50:33.321 - 32924460 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC1" "AcqSystem1"
  2027. -* NOTICE *- 21:50:33.321 - 32924482 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 526, Command Line: -CreateCscAcqEnt "CSC1" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2028. -* NOTICE *- 21:50:33.321 - 32924592 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE CSC1. Channel Count: 1
  2029. -* NOTICE *- 21:50:33.322 - 32925554 - FormatCmdLine::GetNextLine() - Processing line number: 527
  2030. -* NOTICE *- 21:50:33.322 - 32925580 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC1" True
  2031. -* NOTICE *- 21:50:33.322 - 32925604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 527, Command Line: -SetAcqEntProcessingEnabled "CSC1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2032. -* NOTICE *- 21:50:33.322 - 32925646 - FormatCmdLine::GetNextLine() - Processing line number: 528
  2033. -* NOTICE *- 21:50:33.322 - 32925666 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC1" 58
  2034. -* NOTICE *- 21:50:33.322 - 32925688 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 528, Command Line: -SetChannelNumber "CSC1" 58, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2035. -* NOTICE *- 21:50:33.322 - 32925744 - FormatCmdLine::GetNextLine() - Processing line number: 529
  2036. -* NOTICE *- 21:50:33.322 - 32925764 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC1" 36000001
  2037. -* NOTICE *- 21:50:33.322 - 32925788 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 529, Command Line: -SetAcqEntReference "CSC1" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2038. -* NOTICE *- 21:50:33.322 - 32925866 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 1 36 ) about to be sent.
  2039. -* NOTICE *- 21:50:33.323 - 32925932 - DRSController::SendDRSCommand() - DRS Command(b1 rbs 4 32 ) about to be sent.
  2040. -* NOTICE *- 21:50:33.323 - 32925992 - DRSController::SendDRSCommand() - DRS Command(b1 crs 24 4 ) about to be sent.
  2041. -* NOTICE *- 21:50:33.323 - 32926048 - DRSController::SendDRSCommand() - DRS Command(b1 crs 25 4 ) about to be sent.
  2042. -* NOTICE *- 21:50:33.323 - 32926104 - DRSController::SendDRSCommand() - DRS Command(b1 crs 26 4 ) about to be sent.
  2043. -* NOTICE *- 21:50:33.323 - 32926158 - DRSController::SendDRSCommand() - DRS Command(b1 crs 27 4 ) about to be sent.
  2044. -* NOTICE *- 21:50:33.323 - 32926214 - DRSController::SendDRSCommand() - DRS Command(b1 crs 28 4 ) about to be sent.
  2045. -* NOTICE *- 21:50:33.323 - 32926274 - DRSController::SendDRSCommand() - DRS Command(b1 crs 29 4 ) about to be sent.
  2046. -* NOTICE *- 21:50:33.323 - 32926332 - DRSController::SendDRSCommand() - DRS Command(b1 crs 30 4 ) about to be sent.
  2047. -* NOTICE *- 21:50:33.323 - 32926388 - DRSController::SendDRSCommand() - DRS Command(b1 crs 31 4 ) about to be sent.
  2048. -* NOTICE *- 21:50:33.323 - 32926448 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 1 34 ) about to be sent.
  2049. -* NOTICE *- 21:50:33.323 - 32926502 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 2 32 ) about to be sent.
  2050. -* NOTICE *- 21:50:33.323 - 32926558 - DRSController::SendDRSCommand() - DRS Command(b3 crs 19 2 ) about to be sent.
  2051. -* NOTICE *- 21:50:33.323 - 32926614 - DRSController::SendDRSCommand() - DRS Command(b3 crs 24 2 ) about to be sent.
  2052. -* NOTICE *- 21:50:33.323 - 32926670 - DRSController::SendDRSCommand() - DRS Command(b3 crs 25 2 ) about to be sent.
  2053. -* NOTICE *- 21:50:33.323 - 32926724 - DRSController::SendDRSCommand() - DRS Command(b3 crs 26 2 ) about to be sent.
  2054. -* NOTICE *- 21:50:33.323 - 32926780 - DRSController::SendDRSCommand() - DRS Command(b3 crs 27 2 ) about to be sent.
  2055. -* NOTICE *- 21:50:33.323 - 32926834 - DRSController::SendDRSCommand() - DRS Command(b3 crs 28 2 ) about to be sent.
  2056. -* NOTICE *- 21:50:33.323 - 32926892 - DRSController::SendDRSCommand() - DRS Command(b3 crs 29 2 ) about to be sent.
  2057. -* NOTICE *- 21:50:33.324 - 32926950 - DRSController::SendDRSCommand() - DRS Command(b3 crs 30 2 ) about to be sent.
  2058. -* NOTICE *- 21:50:33.324 - 32927006 - DRSController::SendDRSCommand() - DRS Command(b3 crs 31 2 ) about to be sent.
  2059. -* NOTICE *- 21:50:33.324 - 32927064 - DRSController::SendDRSCommand() - DRS Command(b3 rbs 1 38 ) about to be sent.
  2060. -* NOTICE *- 21:50:33.324 - 32927126 - DRSController::SendDRSCommand() - DRS Command(b1 gbd 1 1 ) about to be sent.
  2061. -* NOTICE *- 21:50:33.324 - 32927188 - DRSController::SendDRSCommand() - DRS Command(b3 crs 26 1 ) about to be sent.
  2062. -* NOTICE *- 21:50:33.324 - 32927240 - FormatCmdLine::GetNextLine() - Processing line number: 530
  2063. -* NOTICE *- 21:50:33.324 - 32927264 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC1" 1000
  2064. -* NOTICE *- 21:50:33.324 - 32927286 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 530, Command Line: -SetInputRange "CSC1" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2065. -* NOTICE *- 21:50:33.324 - 32927330 - FormatCmdLine::GetNextLine() - Processing line number: 531
  2066. -* NOTICE *- 21:50:33.324 - 32927350 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC1" 16
  2067. -* NOTICE *- 21:50:33.324 - 32927374 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 531, Command Line: -SetSubSamplingInterleave "CSC1" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2068. -* NOTICE *- 21:50:33.324 - 32927416 - FormatCmdLine::GetNextLine() - Processing line number: 532
  2069. -* NOTICE *- 21:50:33.324 - 32927436 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC1" True
  2070. -* NOTICE *- 21:50:33.324 - 32927460 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 532, Command Line: -SetDspLowCutFilterEnabled "CSC1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2071. -* NOTICE *- 21:50:33.324 - 32927524 - FormatCmdLine::GetNextLine() - Processing line number: 533
  2072. -* NOTICE *- 21:50:33.324 - 32927546 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC1" 0.1
  2073. -* NOTICE *- 21:50:33.324 - 32927570 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 533, Command Line: -SetDspLowCutFrequency "CSC1" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2074. -* NOTICE *- 21:50:33.324 - 32927620 - FormatCmdLine::GetNextLine() - Processing line number: 534
  2075. -* NOTICE *- 21:50:33.324 - 32927644 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC1" 0
  2076. -* NOTICE *- 21:50:33.324 - 32927668 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 534, Command Line: -SetDspLowCutNumberTaps "CSC1" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2077. -* NOTICE *- 21:50:33.324 - 32927716 - FormatCmdLine::GetNextLine() - Processing line number: 535
  2078. -* NOTICE *- 21:50:33.324 - 32927738 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC1" True
  2079. -* NOTICE *- 21:50:33.324 - 32927760 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 535, Command Line: -SetDspHighCutFilterEnabled "CSC1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2080. -* NOTICE *- 21:50:33.324 - 32927922 - FormatCmdLine::GetNextLine() - Processing line number: 536
  2081. -* NOTICE *- 21:50:33.325 - 32927948 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC1" 500
  2082. -* NOTICE *- 21:50:33.325 - 32927970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 536, Command Line: -SetDspHighCutFrequency "CSC1" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2083. -* NOTICE *- 21:50:33.325 - 32928220 - FormatCmdLine::GetNextLine() - Processing line number: 537
  2084. -* NOTICE *- 21:50:33.325 - 32928458 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC1" 64
  2085. -* NOTICE *- 21:50:33.325 - 32928484 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 537, Command Line: -SetDspHighCutNumberTaps "CSC1" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2086. -* NOTICE *- 21:50:33.325 - 32928692 - FormatCmdLine::GetNextLine() - Processing line number: 538
  2087. -* NOTICE *- 21:50:33.325 - 32928714 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC1" True
  2088. -* NOTICE *- 21:50:33.325 - 32928736 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 538, Command Line: -SetInputInverted "CSC1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2089. -* NOTICE *- 21:50:33.325 - 32928776 - FormatCmdLine::GetNextLine() - Processing line number: 539
  2090. -* NOTICE *- 21:50:33.325 - 32928796 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC1" True
  2091. -* NOTICE *- 21:50:33.325 - 32928818 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 539, Command Line: -SetDiskWriteEnabled "CSC1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2092. -* NOTICE *- 21:50:33.325 - 32928860 - FormatCmdLine::GetNextLine() - Processing line number: 540
  2093. -* NOTICE *- 21:50:33.325 - 32928878 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC1" False
  2094. -* NOTICE *- 21:50:33.325 - 32928900 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 540, Command Line: -SetNetComDataBufferingEnabled "CSC1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2095. -* NOTICE *- 21:50:33.326 - 32928946 - FormatCmdLine::GetNextLine() - Processing line number: 541
  2096. -* NOTICE *- 21:50:33.326 - 32928966 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC1" 3000
  2097. -* NOTICE *- 21:50:33.326 - 32928988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 541, Command Line: -SetNetComDataBufferSize "CSC1" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2098. -* NOTICE *- 21:50:33.326 - 32929028 - FormatCmdLine::GetNextLine() - Processing line number: 542
  2099. -* NOTICE *- 21:50:33.326 - 32929048 - FormatCmdLine::GetNextLine() - Processing line:
  2100. -* NOTICE *- 21:50:33.326 - 32929066 - FormatCmdLine::GetNextLine() - Processing line number: 543
  2101. -* NOTICE *- 21:50:33.326 - 32929090 - FormatCmdLine::GetNextLine() - Processing line:
  2102. -* NOTICE *- 21:50:33.326 - 32929110 - FormatCmdLine::GetNextLine() - Processing line number: 544
  2103. -* NOTICE *- 21:50:33.326 - 32929128 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC2"
  2104. -* NOTICE *- 21:50:33.326 - 32929148 - FormatCmdLine::GetNextLine() - Processing line number: 545
  2105. -* NOTICE *- 21:50:33.326 - 32929166 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC2" "AcqSystem1"
  2106. -* NOTICE *- 21:50:33.326 - 32929188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 545, Command Line: -CreateCscAcqEnt "CSC2" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2107. -* NOTICE *- 21:50:33.326 - 32929298 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE CSC2. Channel Count: 1
  2108. -* NOTICE *- 21:50:33.327 - 32930234 - FormatCmdLine::GetNextLine() - Processing line number: 546
  2109. -* NOTICE *- 21:50:33.327 - 32930260 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC2" True
  2110. -* NOTICE *- 21:50:33.327 - 32930284 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 546, Command Line: -SetAcqEntProcessingEnabled "CSC2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2111. -* NOTICE *- 21:50:33.327 - 32930328 - FormatCmdLine::GetNextLine() - Processing line number: 547
  2112. -* NOTICE *- 21:50:33.327 - 32930348 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC2" 61
  2113. -* NOTICE *- 21:50:33.327 - 32930370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 547, Command Line: -SetChannelNumber "CSC2" 61, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2114. -* NOTICE *- 21:50:33.327 - 32930424 - FormatCmdLine::GetNextLine() - Processing line number: 548
  2115. -* NOTICE *- 21:50:33.327 - 32930444 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC2" 36000001
  2116. -* NOTICE *- 21:50:33.327 - 32930468 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 548, Command Line: -SetAcqEntReference "CSC2" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2117. -* NOTICE *- 21:50:33.327 - 32930558 - DRSController::SendDRSCommand() - DRS Command(b3 crs 29 1 ) about to be sent.
  2118. -* NOTICE *- 21:50:33.327 - 32930616 - FormatCmdLine::GetNextLine() - Processing line number: 549
  2119. -* NOTICE *- 21:50:33.327 - 32930640 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC2" 1000
  2120. -* NOTICE *- 21:50:33.327 - 32930662 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 549, Command Line: -SetInputRange "CSC2" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2121. -* NOTICE *- 21:50:33.327 - 32930706 - FormatCmdLine::GetNextLine() - Processing line number: 550
  2122. -* NOTICE *- 21:50:33.327 - 32930726 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC2" 16
  2123. -* NOTICE *- 21:50:33.327 - 32930750 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 550, Command Line: -SetSubSamplingInterleave "CSC2" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2124. -* NOTICE *- 21:50:33.327 - 32930794 - FormatCmdLine::GetNextLine() - Processing line number: 551
  2125. -* NOTICE *- 21:50:33.327 - 32930814 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC2" True
  2126. -* NOTICE *- 21:50:33.327 - 32930836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 551, Command Line: -SetDspLowCutFilterEnabled "CSC2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2127. -* NOTICE *- 21:50:33.327 - 32930904 - FormatCmdLine::GetNextLine() - Processing line number: 552
  2128. -* NOTICE *- 21:50:33.328 - 32930932 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC2" 0.1
  2129. -* NOTICE *- 21:50:33.328 - 32930958 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 552, Command Line: -SetDspLowCutFrequency "CSC2" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2130. -* NOTICE *- 21:50:33.328 - 32931010 - FormatCmdLine::GetNextLine() - Processing line number: 553
  2131. -* NOTICE *- 21:50:33.328 - 32931030 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC2" 0
  2132. -* NOTICE *- 21:50:33.328 - 32931052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 553, Command Line: -SetDspLowCutNumberTaps "CSC2" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2133. -* NOTICE *- 21:50:33.328 - 32931100 - FormatCmdLine::GetNextLine() - Processing line number: 554
  2134. -* NOTICE *- 21:50:33.328 - 32931120 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC2" True
  2135. -* NOTICE *- 21:50:33.328 - 32931142 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 554, Command Line: -SetDspHighCutFilterEnabled "CSC2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2136. -* NOTICE *- 21:50:33.328 - 32931302 - FormatCmdLine::GetNextLine() - Processing line number: 555
  2137. -* NOTICE *- 21:50:33.328 - 32931324 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC2" 500
  2138. -* NOTICE *- 21:50:33.328 - 32931348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 555, Command Line: -SetDspHighCutFrequency "CSC2" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2139. -* NOTICE *- 21:50:33.328 - 32931594 - FormatCmdLine::GetNextLine() - Processing line number: 556
  2140. -* NOTICE *- 21:50:33.328 - 32931618 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC2" 64
  2141. -* NOTICE *- 21:50:33.328 - 32931640 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 556, Command Line: -SetDspHighCutNumberTaps "CSC2" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2142. -* NOTICE *- 21:50:33.328 - 32931848 - FormatCmdLine::GetNextLine() - Processing line number: 557
  2143. -* NOTICE *- 21:50:33.328 - 32931870 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC2" True
  2144. -* NOTICE *- 21:50:33.328 - 32931892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 557, Command Line: -SetInputInverted "CSC2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2145. -* NOTICE *- 21:50:33.329 - 32931940 - FormatCmdLine::GetNextLine() - Processing line number: 558
  2146. -* NOTICE *- 21:50:33.329 - 32931960 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC2" True
  2147. -* NOTICE *- 21:50:33.329 - 32931982 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 558, Command Line: -SetDiskWriteEnabled "CSC2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2148. -* NOTICE *- 21:50:33.329 - 32932024 - FormatCmdLine::GetNextLine() - Processing line number: 559
  2149. -* NOTICE *- 21:50:33.329 - 32932044 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC2" False
  2150. -* NOTICE *- 21:50:33.329 - 32932066 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 559, Command Line: -SetNetComDataBufferingEnabled "CSC2" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2151. -* NOTICE *- 21:50:33.329 - 32932108 - FormatCmdLine::GetNextLine() - Processing line number: 560
  2152. -* NOTICE *- 21:50:33.329 - 32932126 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC2" 3000
  2153. -* NOTICE *- 21:50:33.329 - 32932150 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 560, Command Line: -SetNetComDataBufferSize "CSC2" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2154. -* NOTICE *- 21:50:33.329 - 32932194 - FormatCmdLine::GetNextLine() - Processing line number: 561
  2155. -* NOTICE *- 21:50:33.329 - 32932216 - FormatCmdLine::GetNextLine() - Processing line:
  2156. -* NOTICE *- 21:50:33.329 - 32932234 - FormatCmdLine::GetNextLine() - Processing line number: 562
  2157. -* NOTICE *- 21:50:33.329 - 32932252 - FormatCmdLine::GetNextLine() - Processing line:
  2158. -* NOTICE *- 21:50:33.329 - 32932272 - FormatCmdLine::GetNextLine() - Processing line number: 563
  2159. -* NOTICE *- 21:50:33.329 - 32932290 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC3"
  2160. -* NOTICE *- 21:50:33.329 - 32932310 - FormatCmdLine::GetNextLine() - Processing line number: 564
  2161. -* NOTICE *- 21:50:33.329 - 32932326 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC3" "AcqSystem1"
  2162. -* NOTICE *- 21:50:33.329 - 32932348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 564, Command Line: -CreateCscAcqEnt "CSC3" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2163. -* NOTICE *- 21:50:33.329 - 32932458 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE CSC3. Channel Count: 1
  2164. -* NOTICE *- 21:50:33.330 - 32933384 - FormatCmdLine::GetNextLine() - Processing line number: 565
  2165. -* NOTICE *- 21:50:33.330 - 32933412 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC3" True
  2166. -* NOTICE *- 21:50:33.330 - 32933434 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 565, Command Line: -SetAcqEntProcessingEnabled "CSC3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2167. -* NOTICE *- 21:50:33.330 - 32933478 - FormatCmdLine::GetNextLine() - Processing line number: 566
  2168. -* NOTICE *- 21:50:33.330 - 32933498 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC3" 27
  2169. -* NOTICE *- 21:50:33.330 - 32933520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 566, Command Line: -SetChannelNumber "CSC3" 27, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2170. -* NOTICE *- 21:50:33.330 - 32933574 - FormatCmdLine::GetNextLine() - Processing line number: 567
  2171. -* NOTICE *- 21:50:33.330 - 32933594 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC3" 36000001
  2172. -* NOTICE *- 21:50:33.330 - 32933618 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 567, Command Line: -SetAcqEntReference "CSC3" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2173. -* NOTICE *- 21:50:33.330 - 32933696 - DRSController::SendDRSCommand() - DRS Command(b1 crs 27 1 ) about to be sent.
  2174. -* NOTICE *- 21:50:33.330 - 32933754 - FormatCmdLine::GetNextLine() - Processing line number: 568
  2175. -* NOTICE *- 21:50:33.330 - 32933776 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC3" 1000
  2176. -* NOTICE *- 21:50:33.330 - 32933798 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 568, Command Line: -SetInputRange "CSC3" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2177. -* NOTICE *- 21:50:33.330 - 32933844 - FormatCmdLine::GetNextLine() - Processing line number: 569
  2178. -* NOTICE *- 21:50:33.330 - 32933864 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC3" 16
  2179. -* NOTICE *- 21:50:33.330 - 32933886 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 569, Command Line: -SetSubSamplingInterleave "CSC3" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2180. -* NOTICE *- 21:50:33.331 - 32933934 - FormatCmdLine::GetNextLine() - Processing line number: 570
  2181. -* NOTICE *- 21:50:33.331 - 32933954 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC3" True
  2182. -* NOTICE *- 21:50:33.331 - 32934064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 570, Command Line: -SetDspLowCutFilterEnabled "CSC3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2183. -* NOTICE *- 21:50:33.331 - 32934140 - FormatCmdLine::GetNextLine() - Processing line number: 571
  2184. -* NOTICE *- 21:50:33.331 - 32934162 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC3" 0.1
  2185. -* NOTICE *- 21:50:33.331 - 32934186 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 571, Command Line: -SetDspLowCutFrequency "CSC3" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2186. -* NOTICE *- 21:50:33.331 - 32934236 - FormatCmdLine::GetNextLine() - Processing line number: 572
  2187. -* NOTICE *- 21:50:33.331 - 32934258 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC3" 0
  2188. -* NOTICE *- 21:50:33.331 - 32934280 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 572, Command Line: -SetDspLowCutNumberTaps "CSC3" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2189. -* NOTICE *- 21:50:33.331 - 32934328 - FormatCmdLine::GetNextLine() - Processing line number: 573
  2190. -* NOTICE *- 21:50:33.331 - 32934348 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC3" True
  2191. -* NOTICE *- 21:50:33.331 - 32934370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 573, Command Line: -SetDspHighCutFilterEnabled "CSC3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2192. -* NOTICE *- 21:50:33.331 - 32934530 - FormatCmdLine::GetNextLine() - Processing line number: 574
  2193. -* NOTICE *- 21:50:33.331 - 32934554 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC3" 500
  2194. -* NOTICE *- 21:50:33.331 - 32934576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 574, Command Line: -SetDspHighCutFrequency "CSC3" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2195. -* NOTICE *- 21:50:33.331 - 32934824 - FormatCmdLine::GetNextLine() - Processing line number: 575
  2196. -* NOTICE *- 21:50:33.331 - 32934848 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC3" 64
  2197. -* NOTICE *- 21:50:33.331 - 32934872 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 575, Command Line: -SetDspHighCutNumberTaps "CSC3" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2198. -* NOTICE *- 21:50:33.332 - 32935084 - FormatCmdLine::GetNextLine() - Processing line number: 576
  2199. -* NOTICE *- 21:50:33.332 - 32935106 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC3" True
  2200. -* NOTICE *- 21:50:33.332 - 32935128 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 576, Command Line: -SetInputInverted "CSC3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2201. -* NOTICE *- 21:50:33.332 - 32935170 - FormatCmdLine::GetNextLine() - Processing line number: 577
  2202. -* NOTICE *- 21:50:33.332 - 32935190 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC3" True
  2203. -* NOTICE *- 21:50:33.332 - 32935212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 577, Command Line: -SetDiskWriteEnabled "CSC3" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2204. -* NOTICE *- 21:50:33.332 - 32935254 - FormatCmdLine::GetNextLine() - Processing line number: 578
  2205. -* NOTICE *- 21:50:33.332 - 32935272 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC3" False
  2206. -* NOTICE *- 21:50:33.332 - 32935296 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 578, Command Line: -SetNetComDataBufferingEnabled "CSC3" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2207. -* NOTICE *- 21:50:33.332 - 32935342 - FormatCmdLine::GetNextLine() - Processing line number: 579
  2208. -* NOTICE *- 21:50:33.332 - 32935362 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC3" 3000
  2209. -* NOTICE *- 21:50:33.332 - 32935386 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 579, Command Line: -SetNetComDataBufferSize "CSC3" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2210. -* NOTICE *- 21:50:33.332 - 32935428 - FormatCmdLine::GetNextLine() - Processing line number: 580
  2211. -* NOTICE *- 21:50:33.332 - 32935448 - FormatCmdLine::GetNextLine() - Processing line:
  2212. -* NOTICE *- 21:50:33.332 - 32935466 - FormatCmdLine::GetNextLine() - Processing line number: 581
  2213. -* NOTICE *- 21:50:33.332 - 32935484 - FormatCmdLine::GetNextLine() - Processing line:
  2214. -* NOTICE *- 21:50:33.332 - 32935504 - FormatCmdLine::GetNextLine() - Processing line number: 582
  2215. -* NOTICE *- 21:50:33.332 - 32935522 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC4"
  2216. -* NOTICE *- 21:50:33.332 - 32935540 - FormatCmdLine::GetNextLine() - Processing line number: 583
  2217. -* NOTICE *- 21:50:33.332 - 32935558 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC4" "AcqSystem1"
  2218. -* NOTICE *- 21:50:33.332 - 32935580 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 583, Command Line: -CreateCscAcqEnt "CSC4" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2219. -* NOTICE *- 21:50:33.332 - 32935688 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE CSC4. Channel Count: 1
  2220. -* NOTICE *- 21:50:33.333 - 32936648 - FormatCmdLine::GetNextLine() - Processing line number: 584
  2221. -* NOTICE *- 21:50:33.333 - 32936672 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC4" True
  2222. -* NOTICE *- 21:50:33.333 - 32936696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 584, Command Line: -SetAcqEntProcessingEnabled "CSC4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2223. -* NOTICE *- 21:50:33.333 - 32936740 - FormatCmdLine::GetNextLine() - Processing line number: 585
  2224. -* NOTICE *- 21:50:33.333 - 32936760 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC4" 24
  2225. -* NOTICE *- 21:50:33.333 - 32936782 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 585, Command Line: -SetChannelNumber "CSC4" 24, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2226. -* NOTICE *- 21:50:33.333 - 32936836 - FormatCmdLine::GetNextLine() - Processing line number: 586
  2227. -* NOTICE *- 21:50:33.333 - 32936856 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC4" 36000001
  2228. -* NOTICE *- 21:50:33.333 - 32936880 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 586, Command Line: -SetAcqEntReference "CSC4" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2229. -* NOTICE *- 21:50:33.334 - 32936964 - DRSController::SendDRSCommand() - DRS Command(b1 crs 24 1 ) about to be sent.
  2230. -* NOTICE *- 21:50:33.334 - 32937022 - FormatCmdLine::GetNextLine() - Processing line number: 587
  2231. -* NOTICE *- 21:50:33.334 - 32937046 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC4" 1000
  2232. -* NOTICE *- 21:50:33.334 - 32937068 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 587, Command Line: -SetInputRange "CSC4" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2233. -* NOTICE *- 21:50:33.334 - 32937112 - FormatCmdLine::GetNextLine() - Processing line number: 588
  2234. -* NOTICE *- 21:50:33.334 - 32937132 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC4" 16
  2235. -* NOTICE *- 21:50:33.334 - 32937160 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 588, Command Line: -SetSubSamplingInterleave "CSC4" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2236. -* NOTICE *- 21:50:33.334 - 32937206 - FormatCmdLine::GetNextLine() - Processing line number: 589
  2237. -* NOTICE *- 21:50:33.334 - 32937226 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC4" True
  2238. -* NOTICE *- 21:50:33.334 - 32937248 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 589, Command Line: -SetDspLowCutFilterEnabled "CSC4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2239. -* NOTICE *- 21:50:33.334 - 32937314 - FormatCmdLine::GetNextLine() - Processing line number: 590
  2240. -* NOTICE *- 21:50:33.334 - 32937338 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC4" 0.1
  2241. -* NOTICE *- 21:50:33.334 - 32937360 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 590, Command Line: -SetDspLowCutFrequency "CSC4" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2242. -* NOTICE *- 21:50:33.334 - 32937410 - FormatCmdLine::GetNextLine() - Processing line number: 591
  2243. -* NOTICE *- 21:50:33.334 - 32937432 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC4" 0
  2244. -* NOTICE *- 21:50:33.334 - 32937454 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 591, Command Line: -SetDspLowCutNumberTaps "CSC4" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2245. -* NOTICE *- 21:50:33.334 - 32937502 - FormatCmdLine::GetNextLine() - Processing line number: 592
  2246. -* NOTICE *- 21:50:33.334 - 32937522 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC4" True
  2247. -* NOTICE *- 21:50:33.334 - 32937544 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 592, Command Line: -SetDspHighCutFilterEnabled "CSC4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2248. -* NOTICE *- 21:50:33.334 - 32937704 - FormatCmdLine::GetNextLine() - Processing line number: 593
  2249. -* NOTICE *- 21:50:33.334 - 32937728 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC4" 500
  2250. -* NOTICE *- 21:50:33.334 - 32937750 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 593, Command Line: -SetDspHighCutFrequency "CSC4" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2251. -* NOTICE *- 21:50:33.335 - 32938024 - FormatCmdLine::GetNextLine() - Processing line number: 594
  2252. -* NOTICE *- 21:50:33.335 - 32938048 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC4" 64
  2253. -* NOTICE *- 21:50:33.335 - 32938072 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 594, Command Line: -SetDspHighCutNumberTaps "CSC4" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2254. -* NOTICE *- 21:50:33.335 - 32938278 - FormatCmdLine::GetNextLine() - Processing line number: 595
  2255. -* NOTICE *- 21:50:33.335 - 32938300 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC4" True
  2256. -* NOTICE *- 21:50:33.335 - 32938324 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 595, Command Line: -SetInputInverted "CSC4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2257. -* NOTICE *- 21:50:33.335 - 32938366 - FormatCmdLine::GetNextLine() - Processing line number: 596
  2258. -* NOTICE *- 21:50:33.335 - 32938384 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC4" True
  2259. -* NOTICE *- 21:50:33.335 - 32938406 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 596, Command Line: -SetDiskWriteEnabled "CSC4" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2260. -* NOTICE *- 21:50:33.335 - 32938454 - FormatCmdLine::GetNextLine() - Processing line number: 597
  2261. -* NOTICE *- 21:50:33.335 - 32938474 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC4" False
  2262. -* NOTICE *- 21:50:33.335 - 32938498 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 597, Command Line: -SetNetComDataBufferingEnabled "CSC4" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2263. -* NOTICE *- 21:50:33.335 - 32938540 - FormatCmdLine::GetNextLine() - Processing line number: 598
  2264. -* NOTICE *- 21:50:33.335 - 32938560 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC4" 3000
  2265. -* NOTICE *- 21:50:33.335 - 32938582 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 598, Command Line: -SetNetComDataBufferSize "CSC4" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2266. -* NOTICE *- 21:50:33.335 - 32938624 - FormatCmdLine::GetNextLine() - Processing line number: 599
  2267. -* NOTICE *- 21:50:33.335 - 32938644 - FormatCmdLine::GetNextLine() - Processing line:
  2268. -* NOTICE *- 21:50:33.335 - 32938662 - FormatCmdLine::GetNextLine() - Processing line number: 600
  2269. -* NOTICE *- 21:50:33.335 - 32938680 - FormatCmdLine::GetNextLine() - Processing line:
  2270. -* NOTICE *- 21:50:33.335 - 32938700 - FormatCmdLine::GetNextLine() - Processing line number: 601
  2271. -* NOTICE *- 21:50:33.335 - 32938718 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC5"
  2272. -* NOTICE *- 21:50:33.335 - 32938736 - FormatCmdLine::GetNextLine() - Processing line number: 602
  2273. -* NOTICE *- 21:50:33.335 - 32938754 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC5" "AcqSystem1"
  2274. -* NOTICE *- 21:50:33.335 - 32938776 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 602, Command Line: -CreateCscAcqEnt "CSC5" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2275. -* NOTICE *- 21:50:33.335 - 32938888 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE CSC5. Channel Count: 1
  2276. -* NOTICE *- 21:50:33.336 - 32939846 - FormatCmdLine::GetNextLine() - Processing line number: 603
  2277. -* NOTICE *- 21:50:33.336 - 32939874 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC5" True
  2278. -* NOTICE *- 21:50:33.336 - 32939896 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 603, Command Line: -SetAcqEntProcessingEnabled "CSC5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2279. -* NOTICE *- 21:50:33.337 - 32939942 - FormatCmdLine::GetNextLine() - Processing line number: 604
  2280. -* NOTICE *- 21:50:33.337 - 32939964 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC5" 28
  2281. -* NOTICE *- 21:50:33.337 - 32939986 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 604, Command Line: -SetChannelNumber "CSC5" 28, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2282. -* NOTICE *- 21:50:33.337 - 32940042 - FormatCmdLine::GetNextLine() - Processing line number: 605
  2283. -* NOTICE *- 21:50:33.337 - 32940062 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC5" 36000001
  2284. -* NOTICE *- 21:50:33.337 - 32940086 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 605, Command Line: -SetAcqEntReference "CSC5" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2285. -* NOTICE *- 21:50:33.337 - 32940166 - DRSController::SendDRSCommand() - DRS Command(b1 crs 28 1 ) about to be sent.
  2286. -* NOTICE *- 21:50:33.337 - 32940224 - FormatCmdLine::GetNextLine() - Processing line number: 606
  2287. -* NOTICE *- 21:50:33.337 - 32940250 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC5" 1000
  2288. -* NOTICE *- 21:50:33.337 - 32940276 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 606, Command Line: -SetInputRange "CSC5" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2289. -* NOTICE *- 21:50:33.337 - 32940324 - FormatCmdLine::GetNextLine() - Processing line number: 607
  2290. -* NOTICE *- 21:50:33.337 - 32940344 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC5" 16
  2291. -* NOTICE *- 21:50:33.337 - 32940366 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 607, Command Line: -SetSubSamplingInterleave "CSC5" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2292. -* NOTICE *- 21:50:33.337 - 32940410 - FormatCmdLine::GetNextLine() - Processing line number: 608
  2293. -* NOTICE *- 21:50:33.337 - 32940430 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC5" True
  2294. -* NOTICE *- 21:50:33.337 - 32940454 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 608, Command Line: -SetDspLowCutFilterEnabled "CSC5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2295. -* NOTICE *- 21:50:33.337 - 32940518 - FormatCmdLine::GetNextLine() - Processing line number: 609
  2296. -* NOTICE *- 21:50:33.337 - 32940540 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC5" 0.1
  2297. -* NOTICE *- 21:50:33.337 - 32940562 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 609, Command Line: -SetDspLowCutFrequency "CSC5" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2298. -* NOTICE *- 21:50:33.337 - 32940614 - FormatCmdLine::GetNextLine() - Processing line number: 610
  2299. -* NOTICE *- 21:50:33.337 - 32940634 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC5" 0
  2300. -* NOTICE *- 21:50:33.337 - 32940656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 610, Command Line: -SetDspLowCutNumberTaps "CSC5" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2301. -* NOTICE *- 21:50:33.337 - 32940704 - FormatCmdLine::GetNextLine() - Processing line number: 611
  2302. -* NOTICE *- 21:50:33.337 - 32940724 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC5" True
  2303. -* NOTICE *- 21:50:33.337 - 32940748 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 611, Command Line: -SetDspHighCutFilterEnabled "CSC5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2304. -* NOTICE *- 21:50:33.337 - 32940908 - FormatCmdLine::GetNextLine() - Processing line number: 612
  2305. -* NOTICE *- 21:50:33.338 - 32940934 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC5" 500
  2306. -* NOTICE *- 21:50:33.338 - 32940956 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 612, Command Line: -SetDspHighCutFrequency "CSC5" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2307. -* NOTICE *- 21:50:33.338 - 32941216 - FormatCmdLine::GetNextLine() - Processing line number: 613
  2308. -* NOTICE *- 21:50:33.338 - 32941242 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC5" 64
  2309. -* NOTICE *- 21:50:33.338 - 32941264 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 613, Command Line: -SetDspHighCutNumberTaps "CSC5" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2310. -* NOTICE *- 21:50:33.338 - 32941472 - FormatCmdLine::GetNextLine() - Processing line number: 614
  2311. -* NOTICE *- 21:50:33.338 - 32941496 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC5" True
  2312. -* NOTICE *- 21:50:33.338 - 32941516 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 614, Command Line: -SetInputInverted "CSC5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2313. -* NOTICE *- 21:50:33.338 - 32941562 - FormatCmdLine::GetNextLine() - Processing line number: 615
  2314. -* NOTICE *- 21:50:33.338 - 32941584 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC5" True
  2315. -* NOTICE *- 21:50:33.338 - 32941606 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 615, Command Line: -SetDiskWriteEnabled "CSC5" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2316. -* NOTICE *- 21:50:33.338 - 32941650 - FormatCmdLine::GetNextLine() - Processing line number: 616
  2317. -* NOTICE *- 21:50:33.338 - 32941670 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC5" False
  2318. -* NOTICE *- 21:50:33.338 - 32941692 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 616, Command Line: -SetNetComDataBufferingEnabled "CSC5" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2319. -* NOTICE *- 21:50:33.338 - 32941736 - FormatCmdLine::GetNextLine() - Processing line number: 617
  2320. -* NOTICE *- 21:50:33.338 - 32941754 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC5" 3000
  2321. -* NOTICE *- 21:50:33.338 - 32941778 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 617, Command Line: -SetNetComDataBufferSize "CSC5" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2322. -* NOTICE *- 21:50:33.338 - 32941820 - FormatCmdLine::GetNextLine() - Processing line number: 618
  2323. -* NOTICE *- 21:50:33.338 - 32941840 - FormatCmdLine::GetNextLine() - Processing line:
  2324. -* NOTICE *- 21:50:33.338 - 32941858 - FormatCmdLine::GetNextLine() - Processing line number: 619
  2325. -* NOTICE *- 21:50:33.338 - 32941876 - FormatCmdLine::GetNextLine() - Processing line:
  2326. -* NOTICE *- 21:50:33.338 - 32941894 - FormatCmdLine::GetNextLine() - Processing line number: 620
  2327. -* NOTICE *- 21:50:33.338 - 32941912 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC6"
  2328. -* NOTICE *- 21:50:33.339 - 32941936 - FormatCmdLine::GetNextLine() - Processing line number: 621
  2329. -* NOTICE *- 21:50:33.339 - 32941954 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC6" "AcqSystem1"
  2330. -* NOTICE *- 21:50:33.339 - 32941978 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 621, Command Line: -CreateCscAcqEnt "CSC6" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2331. -* NOTICE *- 21:50:33.339 - 32942140 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE CSC6. Channel Count: 1
  2332. -* NOTICE *- 21:50:33.340 - 32943088 - FormatCmdLine::GetNextLine() - Processing line number: 622
  2333. -* NOTICE *- 21:50:33.340 - 32943114 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC6" True
  2334. -* NOTICE *- 21:50:33.340 - 32943138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 622, Command Line: -SetAcqEntProcessingEnabled "CSC6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2335. -* NOTICE *- 21:50:33.340 - 32943182 - FormatCmdLine::GetNextLine() - Processing line number: 623
  2336. -* NOTICE *- 21:50:33.340 - 32943202 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC6" 25
  2337. -* NOTICE *- 21:50:33.340 - 32943224 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 623, Command Line: -SetChannelNumber "CSC6" 25, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2338. -* NOTICE *- 21:50:33.340 - 32943278 - FormatCmdLine::GetNextLine() - Processing line number: 624
  2339. -* NOTICE *- 21:50:33.340 - 32943522 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC6" 36000001
  2340. -* NOTICE *- 21:50:33.340 - 32943548 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 624, Command Line: -SetAcqEntReference "CSC6" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2341. -* NOTICE *- 21:50:33.340 - 32943636 - DRSController::SendDRSCommand() - DRS Command(b1 crs 25 1 ) about to be sent.
  2342. -* NOTICE *- 21:50:33.340 - 32943696 - FormatCmdLine::GetNextLine() - Processing line number: 625
  2343. -* NOTICE *- 21:50:33.340 - 32943718 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC6" 1000
  2344. -* NOTICE *- 21:50:33.340 - 32943742 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 625, Command Line: -SetInputRange "CSC6" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2345. -* NOTICE *- 21:50:33.340 - 32943788 - FormatCmdLine::GetNextLine() - Processing line number: 626
  2346. -* NOTICE *- 21:50:33.340 - 32943806 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC6" 16
  2347. -* NOTICE *- 21:50:33.340 - 32943828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 626, Command Line: -SetSubSamplingInterleave "CSC6" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2348. -* NOTICE *- 21:50:33.340 - 32943872 - FormatCmdLine::GetNextLine() - Processing line number: 627
  2349. -* NOTICE *- 21:50:33.340 - 32943892 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC6" True
  2350. -* NOTICE *- 21:50:33.340 - 32943914 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 627, Command Line: -SetDspLowCutFilterEnabled "CSC6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2351. -* NOTICE *- 21:50:33.341 - 32943986 - FormatCmdLine::GetNextLine() - Processing line number: 628
  2352. -* NOTICE *- 21:50:33.341 - 32944008 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC6" 0.1
  2353. -* NOTICE *- 21:50:33.341 - 32944030 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 628, Command Line: -SetDspLowCutFrequency "CSC6" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2354. -* NOTICE *- 21:50:33.341 - 32944080 - FormatCmdLine::GetNextLine() - Processing line number: 629
  2355. -* NOTICE *- 21:50:33.341 - 32944102 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC6" 0
  2356. -* NOTICE *- 21:50:33.341 - 32944124 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 629, Command Line: -SetDspLowCutNumberTaps "CSC6" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2357. -* NOTICE *- 21:50:33.341 - 32944170 - FormatCmdLine::GetNextLine() - Processing line number: 630
  2358. -* NOTICE *- 21:50:33.341 - 32944190 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC6" True
  2359. -* NOTICE *- 21:50:33.341 - 32944212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 630, Command Line: -SetDspHighCutFilterEnabled "CSC6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2360. -* NOTICE *- 21:50:33.341 - 32944372 - FormatCmdLine::GetNextLine() - Processing line number: 631
  2361. -* NOTICE *- 21:50:33.341 - 32944394 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC6" 500
  2362. -* NOTICE *- 21:50:33.341 - 32944418 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 631, Command Line: -SetDspHighCutFrequency "CSC6" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2363. -* NOTICE *- 21:50:33.341 - 32944664 - FormatCmdLine::GetNextLine() - Processing line number: 632
  2364. -* NOTICE *- 21:50:33.341 - 32944688 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC6" 64
  2365. -* NOTICE *- 21:50:33.341 - 32944712 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 632, Command Line: -SetDspHighCutNumberTaps "CSC6" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2366. -* NOTICE *- 21:50:33.341 - 32944922 - FormatCmdLine::GetNextLine() - Processing line number: 633
  2367. -* NOTICE *- 21:50:33.342 - 32944948 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC6" True
  2368. -* NOTICE *- 21:50:33.342 - 32944970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 633, Command Line: -SetInputInverted "CSC6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2369. -* NOTICE *- 21:50:33.342 - 32945012 - FormatCmdLine::GetNextLine() - Processing line number: 634
  2370. -* NOTICE *- 21:50:33.342 - 32945032 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC6" True
  2371. -* NOTICE *- 21:50:33.342 - 32945054 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 634, Command Line: -SetDiskWriteEnabled "CSC6" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2372. -* NOTICE *- 21:50:33.342 - 32945098 - FormatCmdLine::GetNextLine() - Processing line number: 635
  2373. -* NOTICE *- 21:50:33.342 - 32945116 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC6" False
  2374. -* NOTICE *- 21:50:33.342 - 32945138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 635, Command Line: -SetNetComDataBufferingEnabled "CSC6" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2375. -* NOTICE *- 21:50:33.342 - 32945182 - FormatCmdLine::GetNextLine() - Processing line number: 636
  2376. -* NOTICE *- 21:50:33.342 - 32945202 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC6" 3000
  2377. -* NOTICE *- 21:50:33.342 - 32945224 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 636, Command Line: -SetNetComDataBufferSize "CSC6" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2378. -* NOTICE *- 21:50:33.342 - 32945266 - FormatCmdLine::GetNextLine() - Processing line number: 637
  2379. -* NOTICE *- 21:50:33.342 - 32945286 - FormatCmdLine::GetNextLine() - Processing line:
  2380. -* NOTICE *- 21:50:33.342 - 32945304 - FormatCmdLine::GetNextLine() - Processing line number: 638
  2381. -* NOTICE *- 21:50:33.342 - 32945322 - FormatCmdLine::GetNextLine() - Processing line:
  2382. -* NOTICE *- 21:50:33.342 - 32945340 - FormatCmdLine::GetNextLine() - Processing line number: 639
  2383. -* NOTICE *- 21:50:33.342 - 32945358 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC7"
  2384. -* NOTICE *- 21:50:33.342 - 32945378 - FormatCmdLine::GetNextLine() - Processing line number: 640
  2385. -* NOTICE *- 21:50:33.342 - 32945396 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC7" "AcqSystem1"
  2386. -* NOTICE *- 21:50:33.342 - 32945418 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 640, Command Line: -CreateCscAcqEnt "CSC7" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2387. -* NOTICE *- 21:50:33.342 - 32945526 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE CSC7. Channel Count: 1
  2388. -* NOTICE *- 21:50:33.343 - 32946454 - FormatCmdLine::GetNextLine() - Processing line number: 641
  2389. -* NOTICE *- 21:50:33.343 - 32946480 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC7" True
  2390. -* NOTICE *- 21:50:33.343 - 32946504 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 641, Command Line: -SetAcqEntProcessingEnabled "CSC7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2391. -* NOTICE *- 21:50:33.343 - 32946546 - FormatCmdLine::GetNextLine() - Processing line number: 642
  2392. -* NOTICE *- 21:50:33.343 - 32946566 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC7" 26
  2393. -* NOTICE *- 21:50:33.343 - 32946588 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 642, Command Line: -SetChannelNumber "CSC7" 26, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2394. -* NOTICE *- 21:50:33.343 - 32946646 - FormatCmdLine::GetNextLine() - Processing line number: 643
  2395. -* NOTICE *- 21:50:33.343 - 32946670 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC7" 36000001
  2396. -* NOTICE *- 21:50:33.343 - 32946692 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 643, Command Line: -SetAcqEntReference "CSC7" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2397. -* NOTICE *- 21:50:33.343 - 32946774 - DRSController::SendDRSCommand() - DRS Command(b1 crs 26 1 ) about to be sent.
  2398. -* NOTICE *- 21:50:33.343 - 32946832 - FormatCmdLine::GetNextLine() - Processing line number: 644
  2399. -* NOTICE *- 21:50:33.343 - 32946856 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC7" 1000
  2400. -* NOTICE *- 21:50:33.343 - 32946878 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 644, Command Line: -SetInputRange "CSC7" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2401. -* NOTICE *- 21:50:33.344 - 32946926 - FormatCmdLine::GetNextLine() - Processing line number: 645
  2402. -* NOTICE *- 21:50:33.344 - 32946948 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC7" 16
  2403. -* NOTICE *- 21:50:33.344 - 32946970 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 645, Command Line: -SetSubSamplingInterleave "CSC7" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2404. -* NOTICE *- 21:50:33.344 - 32947014 - FormatCmdLine::GetNextLine() - Processing line number: 646
  2405. -* NOTICE *- 21:50:33.344 - 32947034 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC7" True
  2406. -* NOTICE *- 21:50:33.344 - 32947056 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 646, Command Line: -SetDspLowCutFilterEnabled "CSC7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2407. -* NOTICE *- 21:50:33.344 - 32947122 - FormatCmdLine::GetNextLine() - Processing line number: 647
  2408. -* NOTICE *- 21:50:33.344 - 32947144 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC7" 0.1
  2409. -* NOTICE *- 21:50:33.344 - 32947166 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 647, Command Line: -SetDspLowCutFrequency "CSC7" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2410. -* NOTICE *- 21:50:33.344 - 32947218 - FormatCmdLine::GetNextLine() - Processing line number: 648
  2411. -* NOTICE *- 21:50:33.344 - 32947238 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC7" 0
  2412. -* NOTICE *- 21:50:33.344 - 32947260 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 648, Command Line: -SetDspLowCutNumberTaps "CSC7" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2413. -* NOTICE *- 21:50:33.344 - 32947308 - FormatCmdLine::GetNextLine() - Processing line number: 649
  2414. -* NOTICE *- 21:50:33.344 - 32947330 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC7" True
  2415. -* NOTICE *- 21:50:33.344 - 32947350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 649, Command Line: -SetDspHighCutFilterEnabled "CSC7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2416. -* NOTICE *- 21:50:33.344 - 32947510 - FormatCmdLine::GetNextLine() - Processing line number: 650
  2417. -* NOTICE *- 21:50:33.344 - 32947532 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC7" 500
  2418. -* NOTICE *- 21:50:33.344 - 32947556 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 650, Command Line: -SetDspHighCutFrequency "CSC7" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2419. -* NOTICE *- 21:50:33.344 - 32947810 - FormatCmdLine::GetNextLine() - Processing line number: 651
  2420. -* NOTICE *- 21:50:33.344 - 32947836 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC7" 64
  2421. -* NOTICE *- 21:50:33.344 - 32947858 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 651, Command Line: -SetDspHighCutNumberTaps "CSC7" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2422. -* NOTICE *- 21:50:33.345 - 32948074 - FormatCmdLine::GetNextLine() - Processing line number: 652
  2423. -* NOTICE *- 21:50:33.345 - 32948098 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC7" True
  2424. -* NOTICE *- 21:50:33.345 - 32948120 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 652, Command Line: -SetInputInverted "CSC7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2425. -* NOTICE *- 21:50:33.345 - 32948164 - FormatCmdLine::GetNextLine() - Processing line number: 653
  2426. -* NOTICE *- 21:50:33.345 - 32948184 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC7" True
  2427. -* NOTICE *- 21:50:33.345 - 32948206 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 653, Command Line: -SetDiskWriteEnabled "CSC7" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2428. -* NOTICE *- 21:50:33.345 - 32948250 - FormatCmdLine::GetNextLine() - Processing line number: 654
  2429. -* NOTICE *- 21:50:33.345 - 32948270 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC7" False
  2430. -* NOTICE *- 21:50:33.345 - 32948292 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 654, Command Line: -SetNetComDataBufferingEnabled "CSC7" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2431. -* NOTICE *- 21:50:33.345 - 32948336 - FormatCmdLine::GetNextLine() - Processing line number: 655
  2432. -* NOTICE *- 21:50:33.345 - 32948354 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC7" 3000
  2433. -* NOTICE *- 21:50:33.345 - 32948376 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 655, Command Line: -SetNetComDataBufferSize "CSC7" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2434. -* NOTICE *- 21:50:33.345 - 32948420 - FormatCmdLine::GetNextLine() - Processing line number: 656
  2435. -* NOTICE *- 21:50:33.345 - 32948438 - FormatCmdLine::GetNextLine() - Processing line:
  2436. -* NOTICE *- 21:50:33.345 - 32948456 - FormatCmdLine::GetNextLine() - Processing line number: 657
  2437. -* NOTICE *- 21:50:33.345 - 32948474 - FormatCmdLine::GetNextLine() - Processing line:
  2438. -* NOTICE *- 21:50:33.345 - 32948494 - FormatCmdLine::GetNextLine() - Processing line number: 658
  2439. -* NOTICE *- 21:50:33.345 - 32948510 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC8"
  2440. -* NOTICE *- 21:50:33.345 - 32948530 - FormatCmdLine::GetNextLine() - Processing line number: 659
  2441. -* NOTICE *- 21:50:33.345 - 32948548 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC8" "AcqSystem1"
  2442. -* NOTICE *- 21:50:33.345 - 32948570 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 659, Command Line: -CreateCscAcqEnt "CSC8" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2443. -* NOTICE *- 21:50:33.345 - 32948680 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE CSC8. Channel Count: 1
  2444. -* NOTICE *- 21:50:33.346 - 32949622 - FormatCmdLine::GetNextLine() - Processing line number: 660
  2445. -* NOTICE *- 21:50:33.346 - 32949648 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC8" True
  2446. -* NOTICE *- 21:50:33.346 - 32949672 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 660, Command Line: -SetAcqEntProcessingEnabled "CSC8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2447. -* NOTICE *- 21:50:33.346 - 32949720 - FormatCmdLine::GetNextLine() - Processing line number: 661
  2448. -* NOTICE *- 21:50:33.346 - 32949740 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC8" 29
  2449. -* NOTICE *- 21:50:33.346 - 32949764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 661, Command Line: -SetChannelNumber "CSC8" 29, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2450. -* NOTICE *- 21:50:33.346 - 32949818 - FormatCmdLine::GetNextLine() - Processing line number: 662
  2451. -* NOTICE *- 21:50:33.346 - 32949840 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC8" 36000001
  2452. -* NOTICE *- 21:50:33.346 - 32949862 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 662, Command Line: -SetAcqEntReference "CSC8" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2453. -* NOTICE *- 21:50:33.347 - 32949948 - DRSController::SendDRSCommand() - DRS Command(b1 crs 29 1 ) about to be sent.
  2454. -* NOTICE *- 21:50:33.347 - 32950006 - FormatCmdLine::GetNextLine() - Processing line number: 663
  2455. -* NOTICE *- 21:50:33.347 - 32950030 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC8" 1000
  2456. -* NOTICE *- 21:50:33.347 - 32950052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 663, Command Line: -SetInputRange "CSC8" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2457. -* NOTICE *- 21:50:33.347 - 32950098 - FormatCmdLine::GetNextLine() - Processing line number: 664
  2458. -* NOTICE *- 21:50:33.347 - 32950118 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC8" 16
  2459. -* NOTICE *- 21:50:33.347 - 32950140 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 664, Command Line: -SetSubSamplingInterleave "CSC8" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2460. -* NOTICE *- 21:50:33.347 - 32950184 - FormatCmdLine::GetNextLine() - Processing line number: 665
  2461. -* NOTICE *- 21:50:33.347 - 32950204 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC8" True
  2462. -* NOTICE *- 21:50:33.347 - 32950226 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 665, Command Line: -SetDspLowCutFilterEnabled "CSC8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2463. -* NOTICE *- 21:50:33.347 - 32950292 - FormatCmdLine::GetNextLine() - Processing line number: 666
  2464. -* NOTICE *- 21:50:33.347 - 32950314 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC8" 0.1
  2465. -* NOTICE *- 21:50:33.347 - 32950338 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 666, Command Line: -SetDspLowCutFrequency "CSC8" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2466. -* NOTICE *- 21:50:33.347 - 32950388 - FormatCmdLine::GetNextLine() - Processing line number: 667
  2467. -* NOTICE *- 21:50:33.347 - 32950408 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC8" 0
  2468. -* NOTICE *- 21:50:33.347 - 32950430 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 667, Command Line: -SetDspLowCutNumberTaps "CSC8" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2469. -* NOTICE *- 21:50:33.347 - 32950478 - FormatCmdLine::GetNextLine() - Processing line number: 668
  2470. -* NOTICE *- 21:50:33.347 - 32950500 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC8" True
  2471. -* NOTICE *- 21:50:33.347 - 32950522 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 668, Command Line: -SetDspHighCutFilterEnabled "CSC8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2472. -* NOTICE *- 21:50:33.347 - 32950686 - FormatCmdLine::GetNextLine() - Processing line number: 669
  2473. -* NOTICE *- 21:50:33.347 - 32950712 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC8" 500
  2474. -* NOTICE *- 21:50:33.347 - 32950734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 669, Command Line: -SetDspHighCutFrequency "CSC8" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2475. -* NOTICE *- 21:50:33.348 - 32950990 - FormatCmdLine::GetNextLine() - Processing line number: 670
  2476. -* NOTICE *- 21:50:33.348 - 32951016 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC8" 64
  2477. -* NOTICE *- 21:50:33.348 - 32951038 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 670, Command Line: -SetDspHighCutNumberTaps "CSC8" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2478. -* NOTICE *- 21:50:33.348 - 32951244 - FormatCmdLine::GetNextLine() - Processing line number: 671
  2479. -* NOTICE *- 21:50:33.348 - 32951268 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC8" True
  2480. -* NOTICE *- 21:50:33.348 - 32951290 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 671, Command Line: -SetInputInverted "CSC8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2481. -* NOTICE *- 21:50:33.348 - 32951332 - FormatCmdLine::GetNextLine() - Processing line number: 672
  2482. -* NOTICE *- 21:50:33.348 - 32951352 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC8" True
  2483. -* NOTICE *- 21:50:33.348 - 32951374 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 672, Command Line: -SetDiskWriteEnabled "CSC8" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2484. -* NOTICE *- 21:50:33.348 - 32951416 - FormatCmdLine::GetNextLine() - Processing line number: 673
  2485. -* NOTICE *- 21:50:33.348 - 32951436 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC8" False
  2486. -* NOTICE *- 21:50:33.348 - 32951458 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 673, Command Line: -SetNetComDataBufferingEnabled "CSC8" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2487. -* NOTICE *- 21:50:33.348 - 32951502 - FormatCmdLine::GetNextLine() - Processing line number: 674
  2488. -* NOTICE *- 21:50:33.348 - 32951522 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC8" 3000
  2489. -* NOTICE *- 21:50:33.348 - 32951544 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 674, Command Line: -SetNetComDataBufferSize "CSC8" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2490. -* NOTICE *- 21:50:33.348 - 32951586 - FormatCmdLine::GetNextLine() - Processing line number: 675
  2491. -* NOTICE *- 21:50:33.348 - 32951606 - FormatCmdLine::GetNextLine() - Processing line:
  2492. -* NOTICE *- 21:50:33.348 - 32951624 - FormatCmdLine::GetNextLine() - Processing line number: 676
  2493. -* NOTICE *- 21:50:33.348 - 32951642 - FormatCmdLine::GetNextLine() - Processing line:
  2494. -* NOTICE *- 21:50:33.348 - 32951660 - FormatCmdLine::GetNextLine() - Processing line number: 677
  2495. -* NOTICE *- 21:50:33.348 - 32951680 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC9"
  2496. -* NOTICE *- 21:50:33.348 - 32951698 - FormatCmdLine::GetNextLine() - Processing line number: 678
  2497. -* NOTICE *- 21:50:33.348 - 32951716 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC9" "AcqSystem1"
  2498. -* NOTICE *- 21:50:33.348 - 32951738 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 678, Command Line: -CreateCscAcqEnt "CSC9" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2499. -* NOTICE *- 21:50:33.348 - 32951848 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE CSC9. Channel Count: 1
  2500. -* NOTICE *- 21:50:33.349 - 32952790 - FormatCmdLine::GetNextLine() - Processing line number: 679
  2501. -* NOTICE *- 21:50:33.349 - 32952818 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC9" True
  2502. -* NOTICE *- 21:50:33.349 - 32952842 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 679, Command Line: -SetAcqEntProcessingEnabled "CSC9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2503. -* NOTICE *- 21:50:33.349 - 32952886 - FormatCmdLine::GetNextLine() - Processing line number: 680
  2504. -* NOTICE *- 21:50:33.349 - 32952906 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC9" 59
  2505. -* NOTICE *- 21:50:33.350 - 32952930 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 680, Command Line: -SetChannelNumber "CSC9" 59, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2506. -* NOTICE *- 21:50:33.350 - 32952988 - FormatCmdLine::GetNextLine() - Processing line number: 681
  2507. -* NOTICE *- 21:50:33.350 - 32953010 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC9" 36000001
  2508. -* NOTICE *- 21:50:33.350 - 32953032 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 681, Command Line: -SetAcqEntReference "CSC9" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2509. -* NOTICE *- 21:50:33.350 - 32953126 - DRSController::SendDRSCommand() - DRS Command(b3 crs 27 1 ) about to be sent.
  2510. -* NOTICE *- 21:50:33.350 - 32953184 - FormatCmdLine::GetNextLine() - Processing line number: 682
  2511. -* NOTICE *- 21:50:33.350 - 32953206 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC9" 1000
  2512. -* NOTICE *- 21:50:33.350 - 32953228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 682, Command Line: -SetInputRange "CSC9" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2513. -* NOTICE *- 21:50:33.350 - 32953274 - FormatCmdLine::GetNextLine() - Processing line number: 683
  2514. -* NOTICE *- 21:50:33.350 - 32953294 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC9" 16
  2515. -* NOTICE *- 21:50:33.350 - 32953316 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 683, Command Line: -SetSubSamplingInterleave "CSC9" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2516. -* NOTICE *- 21:50:33.350 - 32953360 - FormatCmdLine::GetNextLine() - Processing line number: 684
  2517. -* NOTICE *- 21:50:33.350 - 32953380 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC9" True
  2518. -* NOTICE *- 21:50:33.350 - 32953402 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 684, Command Line: -SetDspLowCutFilterEnabled "CSC9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2519. -* NOTICE *- 21:50:33.350 - 32953468 - FormatCmdLine::GetNextLine() - Processing line number: 685
  2520. -* NOTICE *- 21:50:33.350 - 32953490 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC9" 0.1
  2521. -* NOTICE *- 21:50:33.350 - 32953514 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 685, Command Line: -SetDspLowCutFrequency "CSC9" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2522. -* NOTICE *- 21:50:33.350 - 32953564 - FormatCmdLine::GetNextLine() - Processing line number: 686
  2523. -* NOTICE *- 21:50:33.350 - 32953584 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC9" 0
  2524. -* NOTICE *- 21:50:33.350 - 32953606 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 686, Command Line: -SetDspLowCutNumberTaps "CSC9" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2525. -* NOTICE *- 21:50:33.350 - 32953660 - FormatCmdLine::GetNextLine() - Processing line number: 687
  2526. -* NOTICE *- 21:50:33.350 - 32953682 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC9" True
  2527. -* NOTICE *- 21:50:33.350 - 32953704 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 687, Command Line: -SetDspHighCutFilterEnabled "CSC9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2528. -* NOTICE *- 21:50:33.350 - 32953864 - FormatCmdLine::GetNextLine() - Processing line number: 688
  2529. -* NOTICE *- 21:50:33.350 - 32953888 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC9" 500
  2530. -* NOTICE *- 21:50:33.350 - 32953910 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 688, Command Line: -SetDspHighCutFrequency "CSC9" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2531. -* NOTICE *- 21:50:33.351 - 32954162 - FormatCmdLine::GetNextLine() - Processing line number: 689
  2532. -* NOTICE *- 21:50:33.351 - 32954188 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC9" 64
  2533. -* NOTICE *- 21:50:33.351 - 32954210 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 689, Command Line: -SetDspHighCutNumberTaps "CSC9" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2534. -* NOTICE *- 21:50:33.351 - 32954416 - FormatCmdLine::GetNextLine() - Processing line number: 690
  2535. -* NOTICE *- 21:50:33.351 - 32954440 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC9" True
  2536. -* NOTICE *- 21:50:33.351 - 32954462 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 690, Command Line: -SetInputInverted "CSC9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2537. -* NOTICE *- 21:50:33.351 - 32954504 - FormatCmdLine::GetNextLine() - Processing line number: 691
  2538. -* NOTICE *- 21:50:33.351 - 32954524 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC9" True
  2539. -* NOTICE *- 21:50:33.351 - 32954546 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 691, Command Line: -SetDiskWriteEnabled "CSC9" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2540. -* NOTICE *- 21:50:33.351 - 32954590 - FormatCmdLine::GetNextLine() - Processing line number: 692
  2541. -* NOTICE *- 21:50:33.351 - 32954610 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC9" False
  2542. -* NOTICE *- 21:50:33.351 - 32954632 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 692, Command Line: -SetNetComDataBufferingEnabled "CSC9" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2543. -* NOTICE *- 21:50:33.351 - 32954676 - FormatCmdLine::GetNextLine() - Processing line number: 693
  2544. -* NOTICE *- 21:50:33.351 - 32954696 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC9" 3000
  2545. -* NOTICE *- 21:50:33.351 - 32954718 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 693, Command Line: -SetNetComDataBufferSize "CSC9" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2546. -* NOTICE *- 21:50:33.351 - 32954762 - FormatCmdLine::GetNextLine() - Processing line number: 694
  2547. -* NOTICE *- 21:50:33.351 - 32954780 - FormatCmdLine::GetNextLine() - Processing line:
  2548. -* NOTICE *- 21:50:33.351 - 32954798 - FormatCmdLine::GetNextLine() - Processing line number: 695
  2549. -* NOTICE *- 21:50:33.351 - 32954816 - FormatCmdLine::GetNextLine() - Processing line:
  2550. -* NOTICE *- 21:50:33.351 - 32954836 - FormatCmdLine::GetNextLine() - Processing line number: 696
  2551. -* NOTICE *- 21:50:33.351 - 32954854 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC10"
  2552. -* NOTICE *- 21:50:33.351 - 32954874 - FormatCmdLine::GetNextLine() - Processing line number: 697
  2553. -* NOTICE *- 21:50:33.351 - 32954894 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC10" "AcqSystem1"
  2554. -* NOTICE *- 21:50:33.351 - 32954922 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 697, Command Line: -CreateCscAcqEnt "CSC10" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2555. -* NOTICE *- 21:50:33.352 - 32955036 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE CSC10. Channel Count: 1
  2556. -* NOTICE *- 21:50:33.353 - 32955980 - FormatCmdLine::GetNextLine() - Processing line number: 698
  2557. -* NOTICE *- 21:50:33.353 - 32956006 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC10" True
  2558. -* NOTICE *- 21:50:33.353 - 32956030 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 698, Command Line: -SetAcqEntProcessingEnabled "CSC10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2559. -* NOTICE *- 21:50:33.353 - 32956074 - FormatCmdLine::GetNextLine() - Processing line number: 699
  2560. -* NOTICE *- 21:50:33.353 - 32956094 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC10" 56
  2561. -* NOTICE *- 21:50:33.353 - 32956116 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 699, Command Line: -SetChannelNumber "CSC10" 56, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2562. -* NOTICE *- 21:50:33.353 - 32956174 - FormatCmdLine::GetNextLine() - Processing line number: 700
  2563. -* NOTICE *- 21:50:33.353 - 32956196 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC10" 36000001
  2564. -* NOTICE *- 21:50:33.353 - 32956218 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 700, Command Line: -SetAcqEntReference "CSC10" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2565. -* NOTICE *- 21:50:33.353 - 32956314 - DRSController::SendDRSCommand() - DRS Command(b3 crs 24 1 ) about to be sent.
  2566. -* NOTICE *- 21:50:33.353 - 32956370 - FormatCmdLine::GetNextLine() - Processing line number: 701
  2567. -* NOTICE *- 21:50:33.353 - 32956394 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC10" 1000
  2568. -* NOTICE *- 21:50:33.353 - 32956416 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 701, Command Line: -SetInputRange "CSC10" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2569. -* NOTICE *- 21:50:33.353 - 32956464 - FormatCmdLine::GetNextLine() - Processing line number: 702
  2570. -* NOTICE *- 21:50:33.353 - 32956484 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC10" 16
  2571. -* NOTICE *- 21:50:33.353 - 32956506 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 702, Command Line: -SetSubSamplingInterleave "CSC10" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2572. -* NOTICE *- 21:50:33.353 - 32956550 - FormatCmdLine::GetNextLine() - Processing line number: 703
  2573. -* NOTICE *- 21:50:33.353 - 32956570 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC10" True
  2574. -* NOTICE *- 21:50:33.353 - 32956592 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 703, Command Line: -SetDspLowCutFilterEnabled "CSC10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2575. -* NOTICE *- 21:50:33.353 - 32956660 - FormatCmdLine::GetNextLine() - Processing line number: 704
  2576. -* NOTICE *- 21:50:33.353 - 32956682 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC10" 0.1
  2577. -* NOTICE *- 21:50:33.353 - 32956704 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 704, Command Line: -SetDspLowCutFrequency "CSC10" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2578. -* NOTICE *- 21:50:33.353 - 32956782 - FormatCmdLine::GetNextLine() - Processing line number: 705
  2579. -* NOTICE *- 21:50:33.353 - 32956806 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC10" 0
  2580. -* NOTICE *- 21:50:33.353 - 32956830 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 705, Command Line: -SetDspLowCutNumberTaps "CSC10" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2581. -* NOTICE *- 21:50:33.353 - 32956880 - FormatCmdLine::GetNextLine() - Processing line number: 706
  2582. -* NOTICE *- 21:50:33.353 - 32956900 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC10" True
  2583. -* NOTICE *- 21:50:33.354 - 32956924 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 706, Command Line: -SetDspHighCutFilterEnabled "CSC10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2584. -* NOTICE *- 21:50:33.354 - 32957090 - FormatCmdLine::GetNextLine() - Processing line number: 707
  2585. -* NOTICE *- 21:50:33.354 - 32957112 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC10" 500
  2586. -* NOTICE *- 21:50:33.354 - 32957136 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 707, Command Line: -SetDspHighCutFrequency "CSC10" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2587. -* NOTICE *- 21:50:33.354 - 32957388 - FormatCmdLine::GetNextLine() - Processing line number: 708
  2588. -* NOTICE *- 21:50:33.354 - 32957412 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC10" 64
  2589. -* NOTICE *- 21:50:33.354 - 32957434 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 708, Command Line: -SetDspHighCutNumberTaps "CSC10" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2590. -* NOTICE *- 21:50:33.354 - 32957642 - FormatCmdLine::GetNextLine() - Processing line number: 709
  2591. -* NOTICE *- 21:50:33.354 - 32957664 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC10" True
  2592. -* NOTICE *- 21:50:33.354 - 32957686 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 709, Command Line: -SetInputInverted "CSC10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2593. -* NOTICE *- 21:50:33.354 - 32957728 - FormatCmdLine::GetNextLine() - Processing line number: 710
  2594. -* NOTICE *- 21:50:33.355 - 32957994 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC10" True
  2595. -* NOTICE *- 21:50:33.355 - 32958022 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 710, Command Line: -SetDiskWriteEnabled "CSC10" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2596. -* NOTICE *- 21:50:33.355 - 32958068 - FormatCmdLine::GetNextLine() - Processing line number: 711
  2597. -* NOTICE *- 21:50:33.355 - 32958088 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC10" False
  2598. -* NOTICE *- 21:50:33.355 - 32958110 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 711, Command Line: -SetNetComDataBufferingEnabled "CSC10" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2599. -* NOTICE *- 21:50:33.355 - 32958156 - FormatCmdLine::GetNextLine() - Processing line number: 712
  2600. -* NOTICE *- 21:50:33.355 - 32958174 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC10" 3000
  2601. -* NOTICE *- 21:50:33.355 - 32958196 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 712, Command Line: -SetNetComDataBufferSize "CSC10" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2602. -* NOTICE *- 21:50:33.355 - 32958240 - FormatCmdLine::GetNextLine() - Processing line number: 713
  2603. -* NOTICE *- 21:50:33.355 - 32958260 - FormatCmdLine::GetNextLine() - Processing line:
  2604. -* NOTICE *- 21:50:33.355 - 32958346 - FormatCmdLine::GetNextLine() - Processing line number: 714
  2605. -* NOTICE *- 21:50:33.355 - 32958370 - FormatCmdLine::GetNextLine() - Processing line:
  2606. -* NOTICE *- 21:50:33.355 - 32958390 - FormatCmdLine::GetNextLine() - Processing line number: 715
  2607. -* NOTICE *- 21:50:33.355 - 32958408 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC11"
  2608. -* NOTICE *- 21:50:33.355 - 32958428 - FormatCmdLine::GetNextLine() - Processing line number: 716
  2609. -* NOTICE *- 21:50:33.355 - 32958446 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC11" "AcqSystem1"
  2610. -* NOTICE *- 21:50:33.355 - 32958468 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 716, Command Line: -CreateCscAcqEnt "CSC11" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2611. -* NOTICE *- 21:50:33.355 - 32958584 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE CSC11. Channel Count: 1
  2612. -* NOTICE *- 21:50:33.356 - 32959518 - FormatCmdLine::GetNextLine() - Processing line number: 717
  2613. -* NOTICE *- 21:50:33.356 - 32959544 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC11" True
  2614. -* NOTICE *- 21:50:33.356 - 32959568 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 717, Command Line: -SetAcqEntProcessingEnabled "CSC11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2615. -* NOTICE *- 21:50:33.356 - 32959612 - FormatCmdLine::GetNextLine() - Processing line number: 718
  2616. -* NOTICE *- 21:50:33.356 - 32959632 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC11" 60
  2617. -* NOTICE *- 21:50:33.356 - 32959654 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 718, Command Line: -SetChannelNumber "CSC11" 60, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2618. -* NOTICE *- 21:50:33.356 - 32959710 - FormatCmdLine::GetNextLine() - Processing line number: 719
  2619. -* NOTICE *- 21:50:33.356 - 32959732 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC11" 36000001
  2620. -* NOTICE *- 21:50:33.356 - 32959754 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 719, Command Line: -SetAcqEntReference "CSC11" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2621. -* NOTICE *- 21:50:33.356 - 32959850 - DRSController::SendDRSCommand() - DRS Command(b3 crs 28 1 ) about to be sent.
  2622. -* NOTICE *- 21:50:33.356 - 32959908 - FormatCmdLine::GetNextLine() - Processing line number: 720
  2623. -* NOTICE *- 21:50:33.357 - 32959934 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC11" 1000
  2624. -* NOTICE *- 21:50:33.357 - 32959958 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 720, Command Line: -SetInputRange "CSC11" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2625. -* NOTICE *- 21:50:33.357 - 32960004 - FormatCmdLine::GetNextLine() - Processing line number: 721
  2626. -* NOTICE *- 21:50:33.357 - 32960024 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC11" 16
  2627. -* NOTICE *- 21:50:33.357 - 32960046 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 721, Command Line: -SetSubSamplingInterleave "CSC11" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2628. -* NOTICE *- 21:50:33.357 - 32960092 - FormatCmdLine::GetNextLine() - Processing line number: 722
  2629. -* NOTICE *- 21:50:33.357 - 32960110 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC11" True
  2630. -* NOTICE *- 21:50:33.357 - 32960134 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 722, Command Line: -SetDspLowCutFilterEnabled "CSC11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2631. -* NOTICE *- 21:50:33.357 - 32960204 - FormatCmdLine::GetNextLine() - Processing line number: 723
  2632. -* NOTICE *- 21:50:33.357 - 32960230 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC11" 0.1
  2633. -* NOTICE *- 21:50:33.357 - 32960252 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 723, Command Line: -SetDspLowCutFrequency "CSC11" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2634. -* NOTICE *- 21:50:33.357 - 32960304 - FormatCmdLine::GetNextLine() - Processing line number: 724
  2635. -* NOTICE *- 21:50:33.357 - 32960324 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC11" 0
  2636. -* NOTICE *- 21:50:33.357 - 32960348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 724, Command Line: -SetDspLowCutNumberTaps "CSC11" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2637. -* NOTICE *- 21:50:33.357 - 32960396 - FormatCmdLine::GetNextLine() - Processing line number: 725
  2638. -* NOTICE *- 21:50:33.357 - 32960416 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC11" True
  2639. -* NOTICE *- 21:50:33.357 - 32960438 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 725, Command Line: -SetDspHighCutFilterEnabled "CSC11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2640. -* NOTICE *- 21:50:33.357 - 32960600 - FormatCmdLine::GetNextLine() - Processing line number: 726
  2641. -* NOTICE *- 21:50:33.357 - 32960624 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC11" 500
  2642. -* NOTICE *- 21:50:33.357 - 32960646 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 726, Command Line: -SetDspHighCutFrequency "CSC11" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2643. -* NOTICE *- 21:50:33.357 - 32960892 - FormatCmdLine::GetNextLine() - Processing line number: 727
  2644. -* NOTICE *- 21:50:33.357 - 32960916 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC11" 64
  2645. -* NOTICE *- 21:50:33.358 - 32960944 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 727, Command Line: -SetDspHighCutNumberTaps "CSC11" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2646. -* NOTICE *- 21:50:33.358 - 32961152 - FormatCmdLine::GetNextLine() - Processing line number: 728
  2647. -* NOTICE *- 21:50:33.358 - 32961176 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC11" True
  2648. -* NOTICE *- 21:50:33.358 - 32961198 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 728, Command Line: -SetInputInverted "CSC11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2649. -* NOTICE *- 21:50:33.358 - 32961242 - FormatCmdLine::GetNextLine() - Processing line number: 729
  2650. -* NOTICE *- 21:50:33.358 - 32961260 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC11" True
  2651. -* NOTICE *- 21:50:33.358 - 32961284 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 729, Command Line: -SetDiskWriteEnabled "CSC11" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2652. -* NOTICE *- 21:50:33.358 - 32961328 - FormatCmdLine::GetNextLine() - Processing line number: 730
  2653. -* NOTICE *- 21:50:33.358 - 32961348 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC11" False
  2654. -* NOTICE *- 21:50:33.358 - 32961370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 730, Command Line: -SetNetComDataBufferingEnabled "CSC11" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2655. -* NOTICE *- 21:50:33.358 - 32961416 - FormatCmdLine::GetNextLine() - Processing line number: 731
  2656. -* NOTICE *- 21:50:33.358 - 32961434 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC11" 3000
  2657. -* NOTICE *- 21:50:33.358 - 32961460 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 731, Command Line: -SetNetComDataBufferSize "CSC11" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2658. -* NOTICE *- 21:50:33.358 - 32961508 - FormatCmdLine::GetNextLine() - Processing line number: 732
  2659. -* NOTICE *- 21:50:33.358 - 32961528 - FormatCmdLine::GetNextLine() - Processing line:
  2660. -* NOTICE *- 21:50:33.358 - 32961546 - FormatCmdLine::GetNextLine() - Processing line number: 733
  2661. -* NOTICE *- 21:50:33.358 - 32961564 - FormatCmdLine::GetNextLine() - Processing line:
  2662. -* NOTICE *- 21:50:33.358 - 32961582 - FormatCmdLine::GetNextLine() - Processing line number: 734
  2663. -* NOTICE *- 21:50:33.358 - 32961600 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSC12"
  2664. -* NOTICE *- 21:50:33.358 - 32961620 - FormatCmdLine::GetNextLine() - Processing line number: 735
  2665. -* NOTICE *- 21:50:33.358 - 32961638 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSC12" "AcqSystem1"
  2666. -* NOTICE *- 21:50:33.358 - 32961660 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 735, Command Line: -CreateCscAcqEnt "CSC12" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2667. -* NOTICE *- 21:50:33.358 - 32961776 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE CSC12. Channel Count: 1
  2668. -* NOTICE *- 21:50:33.359 - 32962710 - FormatCmdLine::GetNextLine() - Processing line number: 736
  2669. -* NOTICE *- 21:50:33.359 - 32962736 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSC12" True
  2670. -* NOTICE *- 21:50:33.359 - 32962760 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 736, Command Line: -SetAcqEntProcessingEnabled "CSC12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2671. -* NOTICE *- 21:50:33.359 - 32962804 - FormatCmdLine::GetNextLine() - Processing line number: 737
  2672. -* NOTICE *- 21:50:33.359 - 32962824 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSC12" 57
  2673. -* NOTICE *- 21:50:33.359 - 32962846 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 737, Command Line: -SetChannelNumber "CSC12" 57, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2674. -* NOTICE *- 21:50:33.359 - 32962904 - FormatCmdLine::GetNextLine() - Processing line number: 738
  2675. -* NOTICE *- 21:50:33.360 - 32962928 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSC12" 36000001
  2676. -* NOTICE *- 21:50:33.360 - 32962952 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 738, Command Line: -SetAcqEntReference "CSC12" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2677. -* NOTICE *- 21:50:33.360 - 32963052 - DRSController::SendDRSCommand() - DRS Command(b3 crs 25 1 ) about to be sent.
  2678. -* NOTICE *- 21:50:33.360 - 32963108 - FormatCmdLine::GetNextLine() - Processing line number: 739
  2679. -* NOTICE *- 21:50:33.360 - 32963132 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSC12" 1000
  2680. -* NOTICE *- 21:50:33.360 - 32963154 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 739, Command Line: -SetInputRange "CSC12" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2681. -* NOTICE *- 21:50:33.360 - 32963200 - FormatCmdLine::GetNextLine() - Processing line number: 740
  2682. -* NOTICE *- 21:50:33.360 - 32963220 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSC12" 16
  2683. -* NOTICE *- 21:50:33.360 - 32963242 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 740, Command Line: -SetSubSamplingInterleave "CSC12" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2684. -* NOTICE *- 21:50:33.360 - 32963292 - FormatCmdLine::GetNextLine() - Processing line number: 741
  2685. -* NOTICE *- 21:50:33.360 - 32963314 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSC12" True
  2686. -* NOTICE *- 21:50:33.360 - 32963338 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 741, Command Line: -SetDspLowCutFilterEnabled "CSC12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2687. -* NOTICE *- 21:50:33.360 - 32963406 - FormatCmdLine::GetNextLine() - Processing line number: 742
  2688. -* NOTICE *- 21:50:33.360 - 32963428 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSC12" 0.1
  2689. -* NOTICE *- 21:50:33.360 - 32963450 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 742, Command Line: -SetDspLowCutFrequency "CSC12" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2690. -* NOTICE *- 21:50:33.360 - 32963502 - FormatCmdLine::GetNextLine() - Processing line number: 743
  2691. -* NOTICE *- 21:50:33.360 - 32963524 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSC12" 0
  2692. -* NOTICE *- 21:50:33.360 - 32963546 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 743, Command Line: -SetDspLowCutNumberTaps "CSC12" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2693. -* NOTICE *- 21:50:33.360 - 32963596 - FormatCmdLine::GetNextLine() - Processing line number: 744
  2694. -* NOTICE *- 21:50:33.360 - 32963616 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSC12" True
  2695. -* NOTICE *- 21:50:33.360 - 32963638 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 744, Command Line: -SetDspHighCutFilterEnabled "CSC12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2696. -* NOTICE *- 21:50:33.360 - 32963802 - FormatCmdLine::GetNextLine() - Processing line number: 745
  2697. -* NOTICE *- 21:50:33.360 - 32963824 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSC12" 500
  2698. -* NOTICE *- 21:50:33.360 - 32963848 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 745, Command Line: -SetDspHighCutFrequency "CSC12" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2699. -* NOTICE *- 21:50:33.361 - 32964100 - FormatCmdLine::GetNextLine() - Processing line number: 746
  2700. -* NOTICE *- 21:50:33.361 - 32964126 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSC12" 64
  2701. -* NOTICE *- 21:50:33.361 - 32964148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 746, Command Line: -SetDspHighCutNumberTaps "CSC12" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2702. -* NOTICE *- 21:50:33.361 - 32964354 - FormatCmdLine::GetNextLine() - Processing line number: 747
  2703. -* NOTICE *- 21:50:33.361 - 32964378 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSC12" True
  2704. -* NOTICE *- 21:50:33.361 - 32964400 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 747, Command Line: -SetInputInverted "CSC12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2705. -* NOTICE *- 21:50:33.361 - 32964442 - FormatCmdLine::GetNextLine() - Processing line number: 748
  2706. -* NOTICE *- 21:50:33.361 - 32964462 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSC12" True
  2707. -* NOTICE *- 21:50:33.361 - 32964484 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 748, Command Line: -SetDiskWriteEnabled "CSC12" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2708. -* NOTICE *- 21:50:33.361 - 32964530 - FormatCmdLine::GetNextLine() - Processing line number: 749
  2709. -* NOTICE *- 21:50:33.361 - 32964550 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSC12" False
  2710. -* NOTICE *- 21:50:33.361 - 32964576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 749, Command Line: -SetNetComDataBufferingEnabled "CSC12" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2711. -* NOTICE *- 21:50:33.361 - 32964624 - FormatCmdLine::GetNextLine() - Processing line number: 750
  2712. -* NOTICE *- 21:50:33.361 - 32964642 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSC12" 3000
  2713. -* NOTICE *- 21:50:33.361 - 32964666 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 750, Command Line: -SetNetComDataBufferSize "CSC12" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2714. -* NOTICE *- 21:50:33.361 - 32964710 - FormatCmdLine::GetNextLine() - Processing line number: 751
  2715. -* NOTICE *- 21:50:33.361 - 32964730 - FormatCmdLine::GetNextLine() - Processing line:
  2716. -* NOTICE *- 21:50:33.361 - 32964748 - FormatCmdLine::GetNextLine() - Processing line number: 752
  2717. -* NOTICE *- 21:50:33.361 - 32964766 - FormatCmdLine::GetNextLine() - Processing line:
  2718. -* NOTICE *- 21:50:33.361 - 32964784 - FormatCmdLine::GetNextLine() - Processing line number: 753
  2719. -* NOTICE *- 21:50:33.361 - 32964802 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSCR1"
  2720. -* NOTICE *- 21:50:33.361 - 32964822 - FormatCmdLine::GetNextLine() - Processing line number: 754
  2721. -* NOTICE *- 21:50:33.361 - 32964840 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSCR1" "AcqSystem1"
  2722. -* NOTICE *- 21:50:33.361 - 32964862 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 754, Command Line: -CreateCscAcqEnt "CSCR1" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2723. -* NOTICE *- 21:50:33.362 - 32964978 - DspFilterGroup::AddFilter() - Filter added successfully to section 0for AE CSCR1. Channel Count: 1
  2724. -* NOTICE *- 21:50:33.362 - 32965904 - FormatCmdLine::GetNextLine() - Processing line number: 755
  2725. -* NOTICE *- 21:50:33.363 - 32965934 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSCR1" True
  2726. -* NOTICE *- 21:50:33.363 - 32965958 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 755, Command Line: -SetAcqEntProcessingEnabled "CSCR1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2727. -* NOTICE *- 21:50:33.363 - 32966004 - FormatCmdLine::GetNextLine() - Processing line number: 756
  2728. -* NOTICE *- 21:50:33.363 - 32966022 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSCR1" 31
  2729. -* NOTICE *- 21:50:33.363 - 32966044 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 756, Command Line: -SetChannelNumber "CSCR1" 31, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2730. -* NOTICE *- 21:50:33.363 - 32966102 - FormatCmdLine::GetNextLine() - Processing line number: 757
  2731. -* NOTICE *- 21:50:33.363 - 32966124 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSCR1" 36000001
  2732. -* NOTICE *- 21:50:33.363 - 32966146 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 757, Command Line: -SetAcqEntReference "CSCR1" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2733. -* NOTICE *- 21:50:33.363 - 32966234 - DRSController::SendDRSCommand() - DRS Command(b1 crs 31 1 ) about to be sent.
  2734. -* NOTICE *- 21:50:33.363 - 32966290 - FormatCmdLine::GetNextLine() - Processing line number: 758
  2735. -* NOTICE *- 21:50:33.363 - 32966314 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSCR1" 1000
  2736. -* NOTICE *- 21:50:33.363 - 32966336 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 758, Command Line: -SetInputRange "CSCR1" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2737. -* NOTICE *- 21:50:33.363 - 32966388 - FormatCmdLine::GetNextLine() - Processing line number: 759
  2738. -* NOTICE *- 21:50:33.363 - 32966410 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSCR1" 16
  2739. -* NOTICE *- 21:50:33.363 - 32966432 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 759, Command Line: -SetSubSamplingInterleave "CSCR1" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2740. -* NOTICE *- 21:50:33.363 - 32966478 - FormatCmdLine::GetNextLine() - Processing line number: 760
  2741. -* NOTICE *- 21:50:33.363 - 32966498 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSCR1" True
  2742. -* NOTICE *- 21:50:33.363 - 32966520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 760, Command Line: -SetDspLowCutFilterEnabled "CSCR1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2743. -* NOTICE *- 21:50:33.363 - 32966588 - FormatCmdLine::GetNextLine() - Processing line number: 761
  2744. -* NOTICE *- 21:50:33.363 - 32966610 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSCR1" 0.1
  2745. -* NOTICE *- 21:50:33.363 - 32966632 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 761, Command Line: -SetDspLowCutFrequency "CSCR1" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2746. -* NOTICE *- 21:50:33.363 - 32966684 - FormatCmdLine::GetNextLine() - Processing line number: 762
  2747. -* NOTICE *- 21:50:33.363 - 32966706 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSCR1" 0
  2748. -* NOTICE *- 21:50:33.363 - 32966728 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 762, Command Line: -SetDspLowCutNumberTaps "CSCR1" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2749. -* NOTICE *- 21:50:33.363 - 32966776 - FormatCmdLine::GetNextLine() - Processing line number: 763
  2750. -* NOTICE *- 21:50:33.363 - 32966798 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSCR1" True
  2751. -* NOTICE *- 21:50:33.363 - 32966820 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 763, Command Line: -SetDspHighCutFilterEnabled "CSCR1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2752. -* NOTICE *- 21:50:33.364 - 32966994 - FormatCmdLine::GetNextLine() - Processing line number: 764
  2753. -* NOTICE *- 21:50:33.364 - 32967018 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSCR1" 500
  2754. -* NOTICE *- 21:50:33.364 - 32967042 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 764, Command Line: -SetDspHighCutFrequency "CSCR1" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2755. -* NOTICE *- 21:50:33.364 - 32967290 - FormatCmdLine::GetNextLine() - Processing line number: 765
  2756. -* NOTICE *- 21:50:33.364 - 32967316 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSCR1" 64
  2757. -* NOTICE *- 21:50:33.364 - 32967338 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 765, Command Line: -SetDspHighCutNumberTaps "CSCR1" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2758. -* NOTICE *- 21:50:33.364 - 32967548 - FormatCmdLine::GetNextLine() - Processing line number: 766
  2759. -* NOTICE *- 21:50:33.364 - 32967570 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSCR1" True
  2760. -* NOTICE *- 21:50:33.364 - 32967592 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 766, Command Line: -SetInputInverted "CSCR1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2761. -* NOTICE *- 21:50:33.364 - 32967636 - FormatCmdLine::GetNextLine() - Processing line number: 767
  2762. -* NOTICE *- 21:50:33.364 - 32967656 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSCR1" True
  2763. -* NOTICE *- 21:50:33.364 - 32967682 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 767, Command Line: -SetDiskWriteEnabled "CSCR1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2764. -* NOTICE *- 21:50:33.364 - 32967730 - FormatCmdLine::GetNextLine() - Processing line number: 768
  2765. -* NOTICE *- 21:50:33.364 - 32967750 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSCR1" False
  2766. -* NOTICE *- 21:50:33.364 - 32967772 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 768, Command Line: -SetNetComDataBufferingEnabled "CSCR1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2767. -* NOTICE *- 21:50:33.364 - 32967818 - FormatCmdLine::GetNextLine() - Processing line number: 769
  2768. -* NOTICE *- 21:50:33.364 - 32967838 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSCR1" 3000
  2769. -* NOTICE *- 21:50:33.364 - 32967860 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 769, Command Line: -SetNetComDataBufferSize "CSCR1" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2770. -* NOTICE *- 21:50:33.364 - 32967904 - FormatCmdLine::GetNextLine() - Processing line number: 770
  2771. -* NOTICE *- 21:50:33.365 - 32967928 - FormatCmdLine::GetNextLine() - Processing line:
  2772. -* NOTICE *- 21:50:33.365 - 32967948 - FormatCmdLine::GetNextLine() - Processing line number: 771
  2773. -* NOTICE *- 21:50:33.365 - 32967964 - FormatCmdLine::GetNextLine() - Processing line:
  2774. -* NOTICE *- 21:50:33.365 - 32967984 - FormatCmdLine::GetNextLine() - Processing line number: 772
  2775. -* NOTICE *- 21:50:33.365 - 32968002 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSCR2"
  2776. -* NOTICE *- 21:50:33.365 - 32968022 - FormatCmdLine::GetNextLine() - Processing line number: 773
  2777. -* NOTICE *- 21:50:33.365 - 32968040 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSCR2" "AcqSystem1"
  2778. -* NOTICE *- 21:50:33.365 - 32968062 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 773, Command Line: -CreateCscAcqEnt "CSCR2" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2779. -* NOTICE *- 21:50:33.365 - 32968182 - DspFilterGroup::AddFilter() - Filter added successfully to section 1for AE CSCR2. Channel Count: 1
  2780. -* NOTICE *- 21:50:33.366 - 32969146 - FormatCmdLine::GetNextLine() - Processing line number: 774
  2781. -* NOTICE *- 21:50:33.366 - 32969174 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSCR2" True
  2782. -* NOTICE *- 21:50:33.366 - 32969200 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 774, Command Line: -SetAcqEntProcessingEnabled "CSCR2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2783. -* NOTICE *- 21:50:33.366 - 32969244 - FormatCmdLine::GetNextLine() - Processing line number: 775
  2784. -* NOTICE *- 21:50:33.366 - 32969264 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSCR2" 63
  2785. -* NOTICE *- 21:50:33.366 - 32969286 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 775, Command Line: -SetChannelNumber "CSCR2" 63, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2786. -* NOTICE *- 21:50:33.366 - 32969344 - FormatCmdLine::GetNextLine() - Processing line number: 776
  2787. -* NOTICE *- 21:50:33.366 - 32969366 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSCR2" 36000001
  2788. -* NOTICE *- 21:50:33.366 - 32969388 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 776, Command Line: -SetAcqEntReference "CSCR2" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2789. -* NOTICE *- 21:50:33.366 - 32969488 - DRSController::SendDRSCommand() - DRS Command(b3 crs 31 1 ) about to be sent.
  2790. -* NOTICE *- 21:50:33.366 - 32969550 - FormatCmdLine::GetNextLine() - Processing line number: 777
  2791. -* NOTICE *- 21:50:33.366 - 32969576 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSCR2" 1000
  2792. -* NOTICE *- 21:50:33.366 - 32969598 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 777, Command Line: -SetInputRange "CSCR2" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2793. -* NOTICE *- 21:50:33.366 - 32969646 - FormatCmdLine::GetNextLine() - Processing line number: 778
  2794. -* NOTICE *- 21:50:33.366 - 32969666 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSCR2" 16
  2795. -* NOTICE *- 21:50:33.366 - 32969688 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 778, Command Line: -SetSubSamplingInterleave "CSCR2" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2796. -* NOTICE *- 21:50:33.366 - 32969734 - FormatCmdLine::GetNextLine() - Processing line number: 779
  2797. -* NOTICE *- 21:50:33.366 - 32969752 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSCR2" True
  2798. -* NOTICE *- 21:50:33.366 - 32969776 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 779, Command Line: -SetDspLowCutFilterEnabled "CSCR2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2799. -* NOTICE *- 21:50:33.366 - 32969842 - FormatCmdLine::GetNextLine() - Processing line number: 780
  2800. -* NOTICE *- 21:50:33.366 - 32969864 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSCR2" 0.1
  2801. -* NOTICE *- 21:50:33.366 - 32969888 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 780, Command Line: -SetDspLowCutFrequency "CSCR2" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2802. -* NOTICE *- 21:50:33.367 - 32969950 - FormatCmdLine::GetNextLine() - Processing line number: 781
  2803. -* NOTICE *- 21:50:33.367 - 32969972 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSCR2" 0
  2804. -* NOTICE *- 21:50:33.367 - 32969994 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 781, Command Line: -SetDspLowCutNumberTaps "CSCR2" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2805. -* NOTICE *- 21:50:33.367 - 32970044 - FormatCmdLine::GetNextLine() - Processing line number: 782
  2806. -* NOTICE *- 21:50:33.367 - 32970064 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSCR2" True
  2807. -* NOTICE *- 21:50:33.367 - 32970088 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 782, Command Line: -SetDspHighCutFilterEnabled "CSCR2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2808. -* NOTICE *- 21:50:33.367 - 32970252 - FormatCmdLine::GetNextLine() - Processing line number: 783
  2809. -* NOTICE *- 21:50:33.367 - 32970276 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSCR2" 500
  2810. -* NOTICE *- 21:50:33.367 - 32970298 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 783, Command Line: -SetDspHighCutFrequency "CSCR2" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2811. -* NOTICE *- 21:50:33.367 - 32970548 - FormatCmdLine::GetNextLine() - Processing line number: 784
  2812. -* NOTICE *- 21:50:33.367 - 32970572 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSCR2" 64
  2813. -* NOTICE *- 21:50:33.367 - 32970596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 784, Command Line: -SetDspHighCutNumberTaps "CSCR2" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2814. -* NOTICE *- 21:50:33.367 - 32970804 - FormatCmdLine::GetNextLine() - Processing line number: 785
  2815. -* NOTICE *- 21:50:33.367 - 32970828 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSCR2" True
  2816. -* NOTICE *- 21:50:33.367 - 32970856 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 785, Command Line: -SetInputInverted "CSCR2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2817. -* NOTICE *- 21:50:33.367 - 32970902 - FormatCmdLine::GetNextLine() - Processing line number: 786
  2818. -* NOTICE *- 21:50:33.368 - 32970930 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSCR2" True
  2819. -* NOTICE *- 21:50:33.368 - 32970956 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 786, Command Line: -SetDiskWriteEnabled "CSCR2" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2820. -* NOTICE *- 21:50:33.368 - 32971002 - FormatCmdLine::GetNextLine() - Processing line number: 787
  2821. -* NOTICE *- 21:50:33.368 - 32971022 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSCR2" False
  2822. -* NOTICE *- 21:50:33.368 - 32971044 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 787, Command Line: -SetNetComDataBufferingEnabled "CSCR2" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2823. -* NOTICE *- 21:50:33.368 - 32971090 - FormatCmdLine::GetNextLine() - Processing line number: 788
  2824. -* NOTICE *- 21:50:33.368 - 32971110 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSCR2" 3000
  2825. -* NOTICE *- 21:50:33.368 - 32971132 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 788, Command Line: -SetNetComDataBufferSize "CSCR2" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2826. -* NOTICE *- 21:50:33.368 - 32971178 - FormatCmdLine::GetNextLine() - Processing line number: 789
  2827. -* NOTICE *- 21:50:33.368 - 32971198 - FormatCmdLine::GetNextLine() - Processing line:
  2828. -* NOTICE *- 21:50:33.368 - 32971216 - FormatCmdLine::GetNextLine() - Processing line number: 790
  2829. -* NOTICE *- 21:50:33.368 - 32971234 - FormatCmdLine::GetNextLine() - Processing line:
  2830. -* NOTICE *- 21:50:33.368 - 32971254 - FormatCmdLine::GetNextLine() - Processing line number: 791
  2831. -* NOTICE *- 21:50:33.368 - 32971272 - FormatCmdLine::GetNextLine() - Processing line: #Acquisition Entity creation and setup for: "CSCHc"
  2832. -* NOTICE *- 21:50:33.368 - 32971292 - FormatCmdLine::GetNextLine() - Processing line number: 792
  2833. -* NOTICE *- 21:50:33.368 - 32971310 - FormatCmdLine::GetNextLine() - Processing line: -CreateCscAcqEnt "CSCHc" "AcqSystem1"
  2834. -* NOTICE *- 21:50:33.368 - 32971332 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 792, Command Line: -CreateCscAcqEnt "CSCHc" "AcqSystem1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2835. -* NOTICE *- 21:50:33.368 - 32971446 - DspFilterGroup::AddFilter() - Filter added successfully to section 2for AE CSCHc. Channel Count: 1
  2836. -* NOTICE *- 21:50:33.369 - 32972394 - FormatCmdLine::GetNextLine() - Processing line number: 793
  2837. -* NOTICE *- 21:50:33.369 - 32972420 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntProcessingEnabled "CSCHc" True
  2838. -* NOTICE *- 21:50:33.369 - 32972444 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 793, Command Line: -SetAcqEntProcessingEnabled "CSCHc" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2839. -* NOTICE *- 21:50:33.369 - 32972490 - FormatCmdLine::GetNextLine() - Processing line number: 794
  2840. -* NOTICE *- 21:50:33.369 - 32972510 - FormatCmdLine::GetNextLine() - Processing line: -SetChannelNumber "CSCHc" 51
  2841. -* NOTICE *- 21:50:33.369 - 32972532 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 794, Command Line: -SetChannelNumber "CSCHc" 51, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2842. -* NOTICE *- 21:50:33.369 - 32972590 - FormatCmdLine::GetNextLine() - Processing line number: 795
  2843. -* NOTICE *- 21:50:33.369 - 32972616 - FormatCmdLine::GetNextLine() - Processing line: -SetAcqEntReference "CSCHc" 36000001
  2844. -* NOTICE *- 21:50:33.369 - 32972640 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 795, Command Line: -SetAcqEntReference "CSCHc" 36000001, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2845. -* NOTICE *- 21:50:33.369 - 32972742 - DRSController::SendDRSCommand() - DRS Command(b3 crs 19 1 ) about to be sent.
  2846. -* NOTICE *- 21:50:33.369 - 32972802 - FormatCmdLine::GetNextLine() - Processing line number: 796
  2847. -* NOTICE *- 21:50:33.369 - 32972826 - FormatCmdLine::GetNextLine() - Processing line: -SetInputRange "CSCHc" 1000
  2848. -* NOTICE *- 21:50:33.369 - 32972848 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 796, Command Line: -SetInputRange "CSCHc" 1000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2849. -* NOTICE *- 21:50:33.370 - 32973166 - FormatCmdLine::GetNextLine() - Processing line number: 797
  2850. -* NOTICE *- 21:50:33.370 - 32973190 - FormatCmdLine::GetNextLine() - Processing line: -SetSubSamplingInterleave "CSCHc" 16
  2851. -* NOTICE *- 21:50:33.370 - 32973212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 797, Command Line: -SetSubSamplingInterleave "CSCHc" 16, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2852. -* NOTICE *- 21:50:33.370 - 32973258 - FormatCmdLine::GetNextLine() - Processing line number: 798
  2853. -* NOTICE *- 21:50:33.370 - 32973276 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFilterEnabled "CSCHc" True
  2854. -* NOTICE *- 21:50:33.370 - 32973298 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 798, Command Line: -SetDspLowCutFilterEnabled "CSCHc" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2855. -* NOTICE *- 21:50:33.370 - 32973366 - FormatCmdLine::GetNextLine() - Processing line number: 799
  2856. -* NOTICE *- 21:50:33.370 - 32973388 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutFrequency "CSCHc" 0.1
  2857. -* NOTICE *- 21:50:33.370 - 32973412 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 799, Command Line: -SetDspLowCutFrequency "CSCHc" 0.1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2858. -* NOTICE *- 21:50:33.370 - 32973464 - FormatCmdLine::GetNextLine() - Processing line number: 800
  2859. -* NOTICE *- 21:50:33.370 - 32973484 - FormatCmdLine::GetNextLine() - Processing line: -SetDspLowCutNumberTaps "CSCHc" 0
  2860. -* NOTICE *- 21:50:33.370 - 32973506 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 800, Command Line: -SetDspLowCutNumberTaps "CSCHc" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2861. -* NOTICE *- 21:50:33.370 - 32973556 - FormatCmdLine::GetNextLine() - Processing line number: 801
  2862. -* NOTICE *- 21:50:33.370 - 32973576 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFilterEnabled "CSCHc" True
  2863. -* NOTICE *- 21:50:33.370 - 32973598 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 801, Command Line: -SetDspHighCutFilterEnabled "CSCHc" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2864. -* NOTICE *- 21:50:33.370 - 32973764 - FormatCmdLine::GetNextLine() - Processing line number: 802
  2865. -* NOTICE *- 21:50:33.370 - 32973788 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutFrequency "CSCHc" 500
  2866. -* NOTICE *- 21:50:33.370 - 32973810 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 802, Command Line: -SetDspHighCutFrequency "CSCHc" 500, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2867. -* NOTICE *- 21:50:33.371 - 32974080 - FormatCmdLine::GetNextLine() - Processing line number: 803
  2868. -* NOTICE *- 21:50:33.371 - 32974106 - FormatCmdLine::GetNextLine() - Processing line: -SetDspHighCutNumberTaps "CSCHc" 64
  2869. -* NOTICE *- 21:50:33.371 - 32974138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 803, Command Line: -SetDspHighCutNumberTaps "CSCHc" 64, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2870. -* NOTICE *- 21:50:33.371 - 32974348 - FormatCmdLine::GetNextLine() - Processing line number: 804
  2871. -* NOTICE *- 21:50:33.371 - 32974370 - FormatCmdLine::GetNextLine() - Processing line: -SetInputInverted "CSCHc" True
  2872. -* NOTICE *- 21:50:33.371 - 32974392 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 804, Command Line: -SetInputInverted "CSCHc" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2873. -* NOTICE *- 21:50:33.371 - 32974436 - FormatCmdLine::GetNextLine() - Processing line number: 805
  2874. -* NOTICE *- 21:50:33.371 - 32974456 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "CSCHc" True
  2875. -* NOTICE *- 21:50:33.371 - 32974478 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 805, Command Line: -SetDiskWriteEnabled "CSCHc" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2876. -* NOTICE *- 21:50:33.371 - 32974524 - FormatCmdLine::GetNextLine() - Processing line number: 806
  2877. -* NOTICE *- 21:50:33.371 - 32974544 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "CSCHc" False
  2878. -* NOTICE *- 21:50:33.371 - 32974566 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 806, Command Line: -SetNetComDataBufferingEnabled "CSCHc" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2879. -* NOTICE *- 21:50:33.371 - 32974612 - FormatCmdLine::GetNextLine() - Processing line number: 807
  2880. -* NOTICE *- 21:50:33.371 - 32974632 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "CSCHc" 3000
  2881. -* NOTICE *- 21:50:33.371 - 32974654 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 807, Command Line: -SetNetComDataBufferSize "CSCHc" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2882. -* NOTICE *- 21:50:33.371 - 32974700 - FormatCmdLine::GetNextLine() - Processing line number: 808
  2883. -* NOTICE *- 21:50:33.371 - 32974720 - FormatCmdLine::GetNextLine() - Processing line:
  2884. -* NOTICE *- 21:50:33.371 - 32974738 - FormatCmdLine::GetNextLine() - Processing line number: 809
  2885. -* NOTICE *- 21:50:33.371 - 32974756 - FormatCmdLine::GetNextLine() - Processing line:
  2886. -* NOTICE *- 21:50:33.371 - 32974774 - FormatCmdLine::GetNextLine() - Processing line number: 810
  2887. -* NOTICE *- 21:50:33.371 - 32974792 - FormatCmdLine::GetNextLine() - Processing line:
  2888. -* NOTICE *- 21:50:33.371 - 32974810 - FormatCmdLine::GetNextLine() - Processing line number: 811
  2889. -* NOTICE *- 21:50:33.371 - 32974828 - FormatCmdLine::GetNextLine() - Processing line: -SetDSPDelayCompensationEnabled False
  2890. -* NOTICE *- 21:50:33.371 - 32974850 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 811, Command Line: -SetDSPDelayCompensationEnabled False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2891. -* NOTICE *- 21:50:33.371 - 32974884 - FormatCmdLine::GetNextLine() - Processing line number: 812
  2892. -* NOTICE *- 21:50:33.371 - 32974902 - FormatCmdLine::GetNextLine() - Processing line: # Acquisition Entity Setup for VT1
  2893. -* NOTICE *- 21:50:33.372 - 32974930 - FormatCmdLine::GetNextLine() - Processing line number: 813
  2894. -* NOTICE *- 21:50:33.372 - 32974950 - FormatCmdLine::GetNextLine() - Processing line: -SetDiskWriteEnabled "VT1" True
  2895. -* NOTICE *- 21:50:33.372 - 32974972 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 813, Command Line: -SetDiskWriteEnabled "VT1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2896. -* NOTICE *- 21:50:33.372 - 32975018 - FormatCmdLine::GetNextLine() - Processing line number: 814
  2897. -* NOTICE *- 21:50:33.372 - 32975042 - FormatCmdLine::GetNextLine() - Processing line: -SetDataFile "VT1" "VT1.nvt"
  2898. -* NOTICE *- 21:50:33.372 - 32975066 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 814, Command Line: -SetDataFile "VT1" "VT1.nvt", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2899. -* NOTICE *- 21:50:33.373 - 32976448 - FormatCmdLine::GetNextLine() - Processing line number: 815
  2900. -* NOTICE *- 21:50:33.373 - 32976472 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferingEnabled "VT1" False
  2901. -* NOTICE *- 21:50:33.373 - 32976496 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 815, Command Line: -SetNetComDataBufferingEnabled "VT1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2902. -* NOTICE *- 21:50:33.373 - 32976542 - FormatCmdLine::GetNextLine() - Processing line number: 816
  2903. -* NOTICE *- 21:50:33.373 - 32976562 - FormatCmdLine::GetNextLine() - Processing line: -SetNetComDataBufferSize "VT1" 3000
  2904. -* NOTICE *- 21:50:33.373 - 32976584 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 816, Command Line: -SetNetComDataBufferSize "VT1" 3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2905. -* NOTICE *- 21:50:33.373 - 32976628 - FormatCmdLine::GetNextLine() - Processing line number: 817
  2906. -* NOTICE *- 21:50:33.373 - 32976648 - FormatCmdLine::GetNextLine() - Processing line: -SetCameraDelay "VT1" 0
  2907. -* NOTICE *- 21:50:33.373 - 32976668 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 817, Command Line: -SetCameraDelay "VT1" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2908. -* NOTICE *- 21:50:33.373 - 32976712 - FormatCmdLine::GetNextLine() - Processing line number: 818
  2909. -* NOTICE *- 21:50:33.373 - 32976732 - FormatCmdLine::GetNextLine() - Processing line: -SetCameraDelayEnabled "VT1" False
  2910. -* NOTICE *- 21:50:33.373 - 32976756 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 818, Command Line: -SetCameraDelayEnabled "VT1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2911. -* NOTICE *- 21:50:33.373 - 32976794 - FormatCmdLine::GetNextLine() - Processing line number: 819
  2912. -* NOTICE *- 21:50:33.373 - 32976814 - FormatCmdLine::GetNextLine() - Processing line: -SetTargetDistance "VT1" 5
  2913. -* NOTICE *- 21:50:33.373 - 32976836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 819, Command Line: -SetTargetDistance "VT1" 5, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2914. -* NOTICE *- 21:50:33.373 - 32976888 - FormatCmdLine::GetNextLine() - Processing line number: 820
  2915. -* NOTICE *- 21:50:33.373 - 32976908 - FormatCmdLine::GetNextLine() - Processing line: -SetTargetRadius "VT1" 20
  2916. -* NOTICE *- 21:50:33.374 - 32976936 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 820, Command Line: -SetTargetRadius "VT1" 20, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2917. -* NOTICE *- 21:50:33.374 - 32976978 - FormatCmdLine::GetNextLine() - Processing line number: 821
  2918. -* NOTICE *- 21:50:33.374 - 32976996 - FormatCmdLine::GetNextLine() - Processing line: -SetFieldEstimationEnabled "VT1" False
  2919. -* NOTICE *- 21:50:33.374 - 32977020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 821, Command Line: -SetFieldEstimationEnabled "VT1" False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2920. -* NOTICE *- 21:50:33.374 - 32977060 - FormatCmdLine::GetNextLine() - Processing line number: 822
  2921. -* NOTICE *- 21:50:33.374 - 32977078 - FormatCmdLine::GetNextLine() - Processing line: -SetHeadDirectionOffset "VT1" 0
  2922. -* NOTICE *- 21:50:33.374 - 32977100 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 822, Command Line: -SetHeadDirectionOffset "VT1" 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2923. -* NOTICE *- 21:50:33.374 - 32977144 - FormatCmdLine::GetNextLine() - Processing line number: 823
  2924. -* NOTICE *- 21:50:33.374 - 32977164 - FormatCmdLine::GetNextLine() - Processing line: -SetVideoTrackingMode "VT1" 2LED
  2925. -* NOTICE *- 21:50:33.374 - 32977188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 823, Command Line: -SetVideoTrackingMode "VT1" 2LED, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2926. -* NOTICE *- 21:50:33.374 - 32977234 - FormatCmdLine::GetNextLine() - Processing line number: 824
  2927. -* NOTICE *- 21:50:33.374 - 32977256 - FormatCmdLine::GetNextLine() - Processing line: -SetLedColor "VT1" 0 GREEN
  2928. -* NOTICE *- 21:50:33.374 - 32977276 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 824, Command Line: -SetLedColor "VT1" 0 GREEN, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2929. -* NOTICE *- 21:50:33.374 - 32977318 - FormatCmdLine::GetNextLine() - Processing line number: 825
  2930. -* NOTICE *- 21:50:33.374 - 32977338 - FormatCmdLine::GetNextLine() - Processing line: -SetLedColor "VT1" 1 RED
  2931. -* NOTICE *- 21:50:33.374 - 32977360 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 825, Command Line: -SetLedColor "VT1" 1 RED, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2932. -* NOTICE *- 21:50:33.374 - 32977400 - FormatCmdLine::GetNextLine() - Processing line number: 826
  2933. -* NOTICE *- 21:50:33.374 - 32977420 - FormatCmdLine::GetNextLine() - Processing line: -SetRedThreshold "VT1" 30
  2934. -* NOTICE *- 21:50:33.374 - 32977442 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 826, Command Line: -SetRedThreshold "VT1" 30, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2935. -* NOTICE *- 21:50:33.374 - 32977506 - FormatCmdLine::GetNextLine() - Processing line number: 827
  2936. -* NOTICE *- 21:50:33.374 - 32977526 - FormatCmdLine::GetNextLine() - Processing line: -SetRedThresholdEnabled "VT1" true
  2937. -* NOTICE *- 21:50:33.374 - 32977550 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 827, Command Line: -SetRedThresholdEnabled "VT1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2938. -* NOTICE *- 21:50:33.374 - 32977588 - VideoTrackerAcqEnt::SetRedThresholdEnabled - VT1 - Enabled red thresholding.
  2939. -* NOTICE *- 21:50:33.374 - 32977610 - FormatCmdLine::GetNextLine() - Processing line number: 828
  2940. -* NOTICE *- 21:50:33.374 - 32977628 - FormatCmdLine::GetNextLine() - Processing line: -SetGreenThreshold "VT1" 40
  2941. -* NOTICE *- 21:50:33.374 - 32977650 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 828, Command Line: -SetGreenThreshold "VT1" 40, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2942. -* NOTICE *- 21:50:33.374 - 32977692 - FormatCmdLine::GetNextLine() - Processing line number: 829
  2943. -* NOTICE *- 21:50:33.374 - 32977712 - FormatCmdLine::GetNextLine() - Processing line: -SetGreenThresholdEnabled "VT1" true
  2944. -* NOTICE *- 21:50:33.374 - 32977734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 829, Command Line: -SetGreenThresholdEnabled "VT1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2945. -* NOTICE *- 21:50:33.374 - 32977774 - VideoTrackerAcqEnt::SetGreenThresholdEnabled - VT1 - Enabled red thresholding.
  2946. -* NOTICE *- 21:50:33.374 - 32977794 - FormatCmdLine::GetNextLine() - Processing line number: 830
  2947. -* NOTICE *- 21:50:33.374 - 32977812 - FormatCmdLine::GetNextLine() - Processing line: -SetBlueThreshold "VT1" 255
  2948. -* NOTICE *- 21:50:33.374 - 32977834 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 830, Command Line: -SetBlueThreshold "VT1" 255, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2949. -* NOTICE *- 21:50:33.374 - 32977876 - FormatCmdLine::GetNextLine() - Processing line number: 831
  2950. -* NOTICE *- 21:50:33.374 - 32977896 - FormatCmdLine::GetNextLine() - Processing line: -SetBlueThresholdEnabled "VT1" false
  2951. -* NOTICE *- 21:50:33.374 - 32977922 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 831, Command Line: -SetBlueThresholdEnabled "VT1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2952. -* NOTICE *- 21:50:33.375 - 32977972 - FormatCmdLine::GetNextLine() - Processing line number: 832
  2953. -* NOTICE *- 21:50:33.375 - 32977994 - FormatCmdLine::GetNextLine() - Processing line: -SetIntensityThreshold "VT1" 255
  2954. -* NOTICE *- 21:50:33.375 - 32978016 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 832, Command Line: -SetIntensityThreshold "VT1" 255, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2955. -* NOTICE *- 21:50:33.375 - 32978056 - FormatCmdLine::GetNextLine() - Processing line number: 833
  2956. -* NOTICE *- 21:50:33.375 - 32978076 - FormatCmdLine::GetNextLine() - Processing line: -SetIntensityThresholdEnabled "VT1" false
  2957. -* NOTICE *- 21:50:33.375 - 32978098 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 833, Command Line: -SetIntensityThresholdEnabled "VT1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2958. -* NOTICE *- 21:50:33.375 - 32978138 - FormatCmdLine::GetNextLine() - Processing line number: 834
  2959. -* NOTICE *- 21:50:33.375 - 32978158 - FormatCmdLine::GetNextLine() - Processing line:
  2960. -* NOTICE *- 21:50:33.375 - 32978176 - FormatCmdLine::GetNextLine() - Processing line number: 835
  2961. -* NOTICE *- 21:50:33.375 - 32978194 - FormatCmdLine::GetNextLine() - Processing line:
  2962. -* NOTICE *- 21:50:33.375 - 32978212 - FormatCmdLine::GetNextLine() - Processing line number: 836
  2963. -* NOTICE *- 21:50:33.375 - 32978230 - FormatCmdLine::GetNextLine() - Processing line: #Main window setup
  2964. -* NOTICE *- 21:50:33.375 - 32978250 - FormatCmdLine::GetNextLine() - Processing line number: 837
  2965. -* NOTICE *- 21:50:33.375 - 32978268 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition Main -16 0
  2966. -* NOTICE *- 21:50:33.375 - 32978290 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 837, Command Line: -SetDialogPosition Main -16 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2967. -* NOTICE *- 21:50:33.376 - 32979190 - FormatCmdLine::GetNextLine() - Processing line number: 838
  2968. -* NOTICE *- 21:50:33.376 - 32979220 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible Main True
  2969. -* NOTICE *- 21:50:33.376 - 32979244 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 838, Command Line: -SetDialogVisible Main True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2970. -* NOTICE *- 21:50:33.380 - 32983026 - FormatCmdLine::GetNextLine() - Processing line number: 839
  2971. -* NOTICE *- 21:50:33.380 - 32983058 - FormatCmdLine::GetNextLine() - Processing line:
  2972. -* NOTICE *- 21:50:33.380 - 32983078 - FormatCmdLine::GetNextLine() - Processing line number: 840
  2973. -* NOTICE *- 21:50:33.380 - 32983096 - FormatCmdLine::GetNextLine() - Processing line:
  2974. -* NOTICE *- 21:50:33.380 - 32983116 - FormatCmdLine::GetNextLine() - Processing line number: 841
  2975. -* NOTICE *- 21:50:33.380 - 32983134 - FormatCmdLine::GetNextLine() - Processing line: #System Status Dialog Setup
  2976. -* NOTICE *- 21:50:33.380 - 32983154 - FormatCmdLine::GetNextLine() - Processing line number: 842
  2977. -* NOTICE *- 21:50:33.380 - 32983172 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusShowDetails True
  2978. -* NOTICE *- 21:50:33.380 - 32983196 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 842, Command Line: -SetSystemStatusShowDetails True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2979. -* NOTICE *- 21:50:33.380 - 32983580 - FormatCmdLine::GetNextLine() - Processing line number: 843
  2980. -* NOTICE *- 21:50:33.380 - 32983610 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition Status 25 58
  2981. -* NOTICE *- 21:50:33.380 - 32983634 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 843, Command Line: -SetDialogPosition Status 25 58, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2982. -* NOTICE *- 21:50:33.381 - 32983926 - FormatCmdLine::GetNextLine() - Processing line number: 844
  2983. -* NOTICE *- 21:50:33.381 - 32983956 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusMessageFilter Fatal on
  2984. -* NOTICE *- 21:50:33.381 - 32983980 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 844, Command Line: -SetSystemStatusMessageFilter Fatal on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2985. -* NOTICE *- 21:50:33.381 - 32984014 - FormatCmdLine::GetNextLine() - Processing line number: 845
  2986. -* NOTICE *- 21:50:33.381 - 32984034 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusMessageFilter Error on
  2987. -* NOTICE *- 21:50:33.381 - 32984058 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 845, Command Line: -SetSystemStatusMessageFilter Error on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2988. -* NOTICE *- 21:50:33.381 - 32984090 - FormatCmdLine::GetNextLine() - Processing line number: 846
  2989. -* NOTICE *- 21:50:33.381 - 32984108 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusMessageFilter Warning on
  2990. -* NOTICE *- 21:50:33.381 - 32984132 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 846, Command Line: -SetSystemStatusMessageFilter Warning on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2991. -* NOTICE *- 21:50:33.381 - 32984164 - FormatCmdLine::GetNextLine() - Processing line number: 847
  2992. -* NOTICE *- 21:50:33.381 - 32984182 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusMessageFilter Notice off
  2993. -* NOTICE *- 21:50:33.381 - 32984204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 847, Command Line: -SetSystemStatusMessageFilter Notice off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2994. -* NOTICE *- 21:50:33.381 - 32984236 - FormatCmdLine::GetNextLine() - Processing line number: 848
  2995. -* NOTICE *- 21:50:33.381 - 32984256 - FormatCmdLine::GetNextLine() - Processing line: -SetSystemStatusMessageFilter Data off
  2996. -* NOTICE *- 21:50:33.381 - 32984278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 848, Command Line: -SetSystemStatusMessageFilter Data off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  2997. -* NOTICE *- 21:50:33.381 - 32984310 - FormatCmdLine::GetNextLine() - Processing line number: 849
  2998. -* NOTICE *- 21:50:33.381 - 32984328 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible Status True
  2999. -* NOTICE *- 21:50:33.381 - 32984350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 849, Command Line: -SetDialogVisible Status True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3000. -* NOTICE *- 21:50:33.384 - 32987498 - FormatCmdLine::GetNextLine() - Processing line number: 850
  3001. -* NOTICE *- 21:50:33.384 - 32987530 - FormatCmdLine::GetNextLine() - Processing line:
  3002. -* NOTICE *- 21:50:33.384 - 32987550 - FormatCmdLine::GetNextLine() - Processing line number: 851
  3003. -* NOTICE *- 21:50:33.384 - 32987568 - FormatCmdLine::GetNextLine() - Processing line:
  3004. -* NOTICE *- 21:50:33.384 - 32987586 - FormatCmdLine::GetNextLine() - Processing line number: 852
  3005. -* NOTICE *- 21:50:33.384 - 32987604 - FormatCmdLine::GetNextLine() - Processing line: #Properties Display Setup
  3006. -* NOTICE *- 21:50:33.384 - 32987628 - FormatCmdLine::GetNextLine() - Processing line number: 853
  3007. -* NOTICE *- 21:50:33.384 - 32987650 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition Properties 791 387
  3008. -* NOTICE *- 21:50:33.384 - 32987672 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 853, Command Line: -SetDialogPosition Properties 791 387, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3009. -* NOTICE *- 21:50:33.385 - 32988010 - FormatCmdLine::GetNextLine() - Processing line number: 854
  3010. -* NOTICE *- 21:50:33.385 - 32988038 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible Properties True
  3011. -* NOTICE *- 21:50:33.385 - 32988062 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 854, Command Line: -SetDialogVisible Properties True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3012. -* NOTICE *- 21:50:33.407 - 33010212 - FormatCmdLine::GetNextLine() - Processing line number: 855
  3013. -* NOTICE *- 21:50:33.407 - 33010242 - FormatCmdLine::GetNextLine() - Processing line:
  3014. -* NOTICE *- 21:50:33.407 - 33010262 - FormatCmdLine::GetNextLine() - Processing line number: 856
  3015. -* NOTICE *- 21:50:33.407 - 33010280 - FormatCmdLine::GetNextLine() - Processing line:
  3016. -* NOTICE *- 21:50:33.407 - 33010298 - FormatCmdLine::GetNextLine() - Processing line number: 857
  3017. -* NOTICE *- 21:50:33.407 - 33010316 - FormatCmdLine::GetNextLine() - Processing line: #Event Dialog Setup
  3018. -* NOTICE *- 21:50:33.407 - 33010336 - FormatCmdLine::GetNextLine() - Processing line number: 858
  3019. -* NOTICE *- 21:50:33.407 - 33010354 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition Events 34 537
  3020. -* NOTICE *- 21:50:33.407 - 33010378 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 858, Command Line: -SetDialogPosition Events 34 537, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3021. -* NOTICE *- 21:50:33.407 - 33010556 - FormatCmdLine::GetNextLine() - Processing line number: 859
  3022. -* NOTICE *- 21:50:33.407 - 33010584 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible Events True
  3023. -* NOTICE *- 21:50:33.407 - 33010606 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 859, Command Line: -SetDialogVisible Events True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3024. -* NOTICE *- 21:50:33.409 - 33012196 - FormatCmdLine::GetNextLine() - Processing line number: 860
  3025. -* NOTICE *- 21:50:33.409 - 33012228 - FormatCmdLine::GetNextLine() - Processing line: -SetEventStringImmediateMode Off
  3026. -* NOTICE *- 21:50:33.409 - 33012252 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 860, Command Line: -SetEventStringImmediateMode Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3027. -* NOTICE *- 21:50:33.409 - 33012286 - FormatCmdLine::GetNextLine() - Processing line number: 861
  3028. -* NOTICE *- 21:50:33.409 - 33012304 - FormatCmdLine::GetNextLine() - Processing line: -SetEventStringSingleKeyMode Off
  3029. -* NOTICE *- 21:50:33.409 - 33012326 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 861, Command Line: -SetEventStringSingleKeyMode Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3030. -* NOTICE *- 21:50:33.409 - 33012358 - FormatCmdLine::GetNextLine() - Processing line number: 862
  3031. -* NOTICE *- 21:50:33.409 - 33012376 - FormatCmdLine::GetNextLine() - Processing line: -SetEventDisplayTTLValueFormat Binary
  3032. -* NOTICE *- 21:50:33.409 - 33012398 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 862, Command Line: -SetEventDisplayTTLValueFormat Binary, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3033. -* NOTICE *- 21:50:33.409 - 33012430 - FormatCmdLine::GetNextLine() - Processing line number: 863
  3034. -* NOTICE *- 21:50:33.409 - 33012524 - FormatCmdLine::GetNextLine() - Processing line:
  3035. -* NOTICE *- 21:50:33.409 - 33012548 - FormatCmdLine::GetNextLine() - Processing line number: 864
  3036. -* NOTICE *- 21:50:33.409 - 33012568 - FormatCmdLine::GetNextLine() - Processing line:
  3037. -* NOTICE *- 21:50:33.409 - 33012586 - FormatCmdLine::GetNextLine() - Processing line number: 865
  3038. -* NOTICE *- 21:50:33.409 - 33012604 - FormatCmdLine::GetNextLine() - Processing line: # Plot Window Setup for Tracker1
  3039. -* NOTICE *- 21:50:33.409 - 33012624 - FormatCmdLine::GetNextLine() - Processing line number: 866
  3040. -* NOTICE *- 21:50:33.409 - 33012642 - FormatCmdLine::GetNextLine() - Processing line: -CreatePlotWindow VideoTracker "Tracker1"
  3041. -* NOTICE *- 21:50:33.409 - 33012664 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 866, Command Line: -CreatePlotWindow VideoTracker "Tracker1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3042. -* NOTICE *- 21:50:33.474 - 33076946 - FormatCmdLine::GetNextLine() - Processing line number: 867
  3043. -* NOTICE *- 21:50:33.474 - 33076978 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPlotType "Tracker1" Threshold
  3044. -* NOTICE *- 21:50:33.474 - 33077002 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 867, Command Line: -SetPlotWindowPlotType "Tracker1" Threshold, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3045. -* NOTICE *- 21:50:33.474 - 33077048 - FormatCmdLine::GetNextLine() - Processing line number: 868
  3046. -* NOTICE *- 21:50:33.474 - 33077068 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPosition "Tracker1" 197 1127 1022 877
  3047. -* NOTICE *- 21:50:33.474 - 33077090 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 868, Command Line: -SetPlotWindowPosition "Tracker1" 197 1127 1022 877, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3048. -* NOTICE *- 21:50:33.475 - 33078692 - FormatCmdLine::GetNextLine() - Processing line number: 869
  3049. -* NOTICE *- 21:50:33.475 - 33078722 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowOverlay "Tracker1" true
  3050. -* NOTICE *- 21:50:33.475 - 33078746 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 869, Command Line: -SetPlotWindowOverlay "Tracker1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3051. -* NOTICE *- 21:50:33.475 - 33078800 - FormatCmdLine::GetNextLine() - Processing line number: 870
  3052. -* NOTICE *- 21:50:33.475 - 33078822 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowTitleBar "Tracker1" true
  3053. -* NOTICE *- 21:50:33.475 - 33078844 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 870, Command Line: -SetPlotWindowShowTitleBar "Tracker1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3054. -* NOTICE *- 21:50:33.475 - 33078884 - FormatCmdLine::GetNextLine() - Processing line number: 871
  3055. -* NOTICE *- 21:50:33.475 - 33078904 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowFrozen "Tracker1" false
  3056. -* NOTICE *- 21:50:33.476 - 33078930 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 871, Command Line: -SetPlotWindowFrozen "Tracker1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3057. -* NOTICE *- 21:50:33.476 - 33078966 - FormatCmdLine::GetNextLine() - Processing line number: 872
  3058. -* NOTICE *- 21:50:33.476 - 33078990 - FormatCmdLine::GetNextLine() - Processing line: # Plot addition and setup for Tracker1
  3059. -* NOTICE *- 21:50:33.476 - 33079018 - FormatCmdLine::GetNextLine() - Processing line number: 873
  3060. -* NOTICE *- 21:50:33.476 - 33079036 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Tracker1" "VT1"
  3061. -* NOTICE *- 21:50:33.476 - 33079064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 873, Command Line: -AddPlot "Tracker1" "VT1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3062. -* NOTICE *- 21:50:33.531 - 33134256 - FormatCmdLine::GetNextLine() - Processing line number: 874
  3063. -* NOTICE *- 21:50:33.531 - 33134288 - FormatCmdLine::GetNextLine() - Processing line: -SetShowDirectionArrow "Tracker1" false
  3064. -* NOTICE *- 21:50:33.531 - 33134312 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 874, Command Line: -SetShowDirectionArrow "Tracker1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3065. -* NOTICE *- 21:50:33.531 - 33134362 - FormatCmdLine::GetNextLine() - Processing line number: 875
  3066. -* NOTICE *- 21:50:33.531 - 33134382 - FormatCmdLine::GetNextLine() - Processing line: -SetShowPositionCross "Tracker1" false
  3067. -* NOTICE *- 21:50:33.531 - 33134406 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 875, Command Line: -SetShowPositionCross "Tracker1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3068. -* NOTICE *- 21:50:33.531 - 33134444 - FormatCmdLine::GetNextLine() - Processing line number: 876
  3069. -* NOTICE *- 21:50:33.531 - 33134464 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowCurrentPlot "Tracker1" "VT1"
  3070. -* NOTICE *- 21:50:33.531 - 33134486 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 876, Command Line: -SetPlotWindowCurrentPlot "Tracker1" "VT1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3071. -* NOTICE *- 21:50:33.531 - 33134552 - FormatCmdLine::GetNextLine() - Processing line number: 877
  3072. -* NOTICE *- 21:50:33.531 - 33134576 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowMaximizeView "Tracker1" false
  3073. -* NOTICE *- 21:50:33.531 - 33134600 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 877, Command Line: -SetPlotWindowMaximizeView "Tracker1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3074. -* NOTICE *- 21:50:33.531 - 33134634 - FormatCmdLine::GetNextLine() - Processing line number: 878
  3075. -* NOTICE *- 21:50:33.531 - 33134654 - FormatCmdLine::GetNextLine() - Processing line:
  3076. -* NOTICE *- 21:50:33.531 - 33134672 - FormatCmdLine::GetNextLine() - Processing line number: 879
  3077. -* NOTICE *- 21:50:33.531 - 33134690 - FormatCmdLine::GetNextLine() - Processing line:
  3078. -* NOTICE *- 21:50:33.531 - 33134710 - FormatCmdLine::GetNextLine() - Processing line number: 880
  3079. -* NOTICE *- 21:50:33.531 - 33134728 - FormatCmdLine::GetNextLine() - Processing line: # Plot Window Setup for Spike Window 1
  3080. -* NOTICE *- 21:50:33.531 - 33134748 - FormatCmdLine::GetNextLine() - Processing line number: 881
  3081. -* NOTICE *- 21:50:33.531 - 33134766 - FormatCmdLine::GetNextLine() - Processing line: -CreatePlotWindow Spike "Spike Window 1"
  3082. -* NOTICE *- 21:50:33.531 - 33134794 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 881, Command Line: -CreatePlotWindow Spike "Spike Window 1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3083. -* NOTICE *- 21:50:33.541 - 33143942 - FormatCmdLine::GetNextLine() - Processing line number: 882
  3084. -* NOTICE *- 21:50:33.541 - 33143972 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPlotType "Spike Window 1" WaveformFeature
  3085. -* NOTICE *- 21:50:33.541 - 33144000 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 882, Command Line: -SetPlotWindowPlotType "Spike Window 1" WaveformFeature, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3086. -* NOTICE *- 21:50:33.541 - 33144046 - FormatCmdLine::GetNextLine() - Processing line number: 883
  3087. -* NOTICE *- 21:50:33.541 - 33144068 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowIcons "Spike Window 1" true
  3088. -* NOTICE *- 21:50:33.541 - 33144090 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 883, Command Line: -SetPlotWindowShowIcons "Spike Window 1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3089. -* NOTICE *- 21:50:33.541 - 33144134 - FormatCmdLine::GetNextLine() - Processing line number: 884
  3090. -* NOTICE *- 21:50:33.541 - 33144158 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowTextValues "Spike Window 1" true
  3091. -* NOTICE *- 21:50:33.541 - 33144180 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 884, Command Line: -SetPlotWindowShowTextValues "Spike Window 1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3092. -* NOTICE *- 21:50:33.541 - 33144222 - FormatCmdLine::GetNextLine() - Processing line number: 885
  3093. -* NOTICE *- 21:50:33.541 - 33144242 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowNumberFeaturePlotsMaximizedView "Spike Window 1" 6
  3094. -* NOTICE *- 21:50:33.541 - 33144264 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 885, Command Line: -SetPlotWindowNumberFeaturePlotsMaximizedView "Spike Window 1" 6, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3095. -* NOTICE *- 21:50:33.541 - 33144306 - FormatCmdLine::GetNextLine() - Processing line number: 886
  3096. -* NOTICE *- 21:50:33.541 - 33144326 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowNumberFeaturePlotsNormalView "Spike Window 1" 6
  3097. -* NOTICE *- 21:50:33.541 - 33144352 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 886, Command Line: -SetPlotWindowNumberFeaturePlotsNormalView "Spike Window 1" 6, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3098. -* NOTICE *- 21:50:33.541 - 33144392 - FormatCmdLine::GetNextLine() - Processing line number: 887
  3099. -* NOTICE *- 21:50:33.541 - 33144412 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPosition "Spike Window 1" 1565 1077 2224 1018
  3100. -* NOTICE *- 21:50:33.541 - 33144434 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 887, Command Line: -SetPlotWindowPosition "Spike Window 1" 1565 1077 2224 1018, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3101. -* NOTICE *- 21:50:33.543 - 33146192 - FormatCmdLine::GetNextLine() - Processing line number: 888
  3102. -* NOTICE *- 21:50:33.543 - 33146222 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowOverlay "Spike Window 1" true
  3103. -* NOTICE *- 21:50:33.543 - 33146246 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 888, Command Line: -SetPlotWindowOverlay "Spike Window 1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3104. -* NOTICE *- 21:50:33.543 - 33146612 - FormatCmdLine::GetNextLine() - Processing line number: 889
  3105. -* NOTICE *- 21:50:33.543 - 33146634 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowTitleBar "Spike Window 1" true
  3106. -* NOTICE *- 21:50:33.543 - 33146656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 889, Command Line: -SetPlotWindowShowTitleBar "Spike Window 1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3107. -* NOTICE *- 21:50:33.543 - 33146694 - FormatCmdLine::GetNextLine() - Processing line number: 890
  3108. -* NOTICE *- 21:50:33.543 - 33146714 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowFrozen "Spike Window 1" false
  3109. -* NOTICE *- 21:50:33.543 - 33146736 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 890, Command Line: -SetPlotWindowFrozen "Spike Window 1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3110. -* NOTICE *- 21:50:33.543 - 33146772 - FormatCmdLine::GetNextLine() - Processing line number: 891
  3111. -* NOTICE *- 21:50:33.543 - 33146790 - FormatCmdLine::GetNextLine() - Processing line: # Plot addition and setup for Spike Window 1
  3112. -* NOTICE *- 21:50:33.543 - 33146814 - FormatCmdLine::GetNextLine() - Processing line number: 892
  3113. -* NOTICE *- 21:50:33.543 - 33146834 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT1"
  3114. -* NOTICE *- 21:50:33.543 - 33146856 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 892, Command Line: -AddPlot "Spike Window 1" "TT1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3115. -* NOTICE *- 21:50:33.607 - 33210166 - FormatCmdLine::GetNextLine() - Processing line number: 893
  3116. -* NOTICE *- 21:50:33.607 - 33210204 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT1" "True"
  3117. -* NOTICE *- 21:50:33.607 - 33210230 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 893, Command Line: -SetPlotEnabled "Spike Window 1" "TT1" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3118. -* NOTICE *- 21:50:33.607 - 33210790 - FormatCmdLine::GetNextLine() - Processing line number: 894
  3119. -* NOTICE *- 21:50:33.607 - 33210814 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 0 on
  3120. -* NOTICE *- 21:50:33.607 - 33210836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 894, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3121. -* NOTICE *- 21:50:33.608 - 33211116 - FormatCmdLine::GetNextLine() - Processing line number: 895
  3122. -* NOTICE *- 21:50:33.608 - 33211142 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 1 on
  3123. -* NOTICE *- 21:50:33.608 - 33211174 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 895, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3124. -* NOTICE *- 21:50:33.608 - 33211240 - FormatCmdLine::GetNextLine() - Processing line number: 896
  3125. -* NOTICE *- 21:50:33.608 - 33211272 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 2 on
  3126. -* NOTICE *- 21:50:33.608 - 33211306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 896, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3127. -* NOTICE *- 21:50:33.608 - 33211370 - FormatCmdLine::GetNextLine() - Processing line number: 897
  3128. -* NOTICE *- 21:50:33.608 - 33211394 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 3 on
  3129. -* NOTICE *- 21:50:33.608 - 33211416 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 897, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3130. -* NOTICE *- 21:50:33.608 - 33211470 - FormatCmdLine::GetNextLine() - Processing line number: 898
  3131. -* NOTICE *- 21:50:33.608 - 33211502 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 4 on
  3132. -* NOTICE *- 21:50:33.608 - 33211534 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 898, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3133. -* NOTICE *- 21:50:33.608 - 33211598 - FormatCmdLine::GetNextLine() - Processing line number: 899
  3134. -* NOTICE *- 21:50:33.608 - 33211632 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 5 on
  3135. -* NOTICE *- 21:50:33.608 - 33211666 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 899, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3136. -* NOTICE *- 21:50:33.608 - 33211730 - FormatCmdLine::GetNextLine() - Processing line number: 900
  3137. -* NOTICE *- 21:50:33.608 - 33211768 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 6 on
  3138. -* NOTICE *- 21:50:33.608 - 33211806 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 900, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3139. -* NOTICE *- 21:50:33.608 - 33211872 - FormatCmdLine::GetNextLine() - Processing line number: 901
  3140. -* NOTICE *- 21:50:33.608 - 33211904 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 7 on
  3141. -* NOTICE *- 21:50:33.608 - 33211930 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 901, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3142. -* NOTICE *- 21:50:33.609 - 33211976 - FormatCmdLine::GetNextLine() - Processing line number: 902
  3143. -* NOTICE *- 21:50:33.609 - 33211998 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 8 on
  3144. -* NOTICE *- 21:50:33.609 - 33212020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 902, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3145. -* NOTICE *- 21:50:33.609 - 33212068 - FormatCmdLine::GetNextLine() - Processing line number: 903
  3146. -* NOTICE *- 21:50:33.609 - 33212088 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 9 on
  3147. -* NOTICE *- 21:50:33.609 - 33212110 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 903, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3148. -* NOTICE *- 21:50:33.609 - 33212152 - FormatCmdLine::GetNextLine() - Processing line number: 904
  3149. -* NOTICE *- 21:50:33.609 - 33212172 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 10 on
  3150. -* NOTICE *- 21:50:33.609 - 33212194 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 904, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3151. -* NOTICE *- 21:50:33.609 - 33212236 - FormatCmdLine::GetNextLine() - Processing line number: 905
  3152. -* NOTICE *- 21:50:33.609 - 33212256 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 11 on
  3153. -* NOTICE *- 21:50:33.609 - 33212278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 905, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3154. -* NOTICE *- 21:50:33.609 - 33212322 - FormatCmdLine::GetNextLine() - Processing line number: 906
  3155. -* NOTICE *- 21:50:33.609 - 33212340 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 12 on
  3156. -* NOTICE *- 21:50:33.609 - 33212362 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 906, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3157. -* NOTICE *- 21:50:33.609 - 33212404 - FormatCmdLine::GetNextLine() - Processing line number: 907
  3158. -* NOTICE *- 21:50:33.609 - 33212424 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 13 on
  3159. -* NOTICE *- 21:50:33.609 - 33212446 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 907, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3160. -* NOTICE *- 21:50:33.609 - 33212488 - FormatCmdLine::GetNextLine() - Processing line number: 908
  3161. -* NOTICE *- 21:50:33.609 - 33212512 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 14 on
  3162. -* NOTICE *- 21:50:33.609 - 33212536 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 908, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3163. -* NOTICE *- 21:50:33.639 - 33242028 - FormatCmdLine::GetNextLine() - Processing line number: 909
  3164. -* NOTICE *- 21:50:33.639 - 33242054 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 15 on
  3165. -* NOTICE *- 21:50:33.639 - 33242076 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 909, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3166. -* NOTICE *- 21:50:33.639 - 33242122 - FormatCmdLine::GetNextLine() - Processing line number: 910
  3167. -* NOTICE *- 21:50:33.639 - 33242142 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 16 on
  3168. -* NOTICE *- 21:50:33.639 - 33242164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 910, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3169. -* NOTICE *- 21:50:33.639 - 33242206 - FormatCmdLine::GetNextLine() - Processing line number: 911
  3170. -* NOTICE *- 21:50:33.639 - 33242226 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 17 on
  3171. -* NOTICE *- 21:50:33.639 - 33242248 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 911, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3172. -* NOTICE *- 21:50:33.650 - 33253126 - FormatCmdLine::GetNextLine() - Processing line number: 912
  3173. -* NOTICE *- 21:50:33.650 - 33253166 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 18 on
  3174. -* NOTICE *- 21:50:33.650 - 33253190 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 912, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3175. -* NOTICE *- 21:50:33.650 - 33253236 - FormatCmdLine::GetNextLine() - Processing line number: 913
  3176. -* NOTICE *- 21:50:33.650 - 33253256 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 19 on
  3177. -* NOTICE *- 21:50:33.650 - 33253278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 913, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3178. -* NOTICE *- 21:50:33.650 - 33253322 - FormatCmdLine::GetNextLine() - Processing line number: 914
  3179. -* NOTICE *- 21:50:33.650 - 33253342 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 20 on
  3180. -* NOTICE *- 21:50:33.650 - 33253364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 914, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3181. -* NOTICE *- 21:50:33.650 - 33253406 - FormatCmdLine::GetNextLine() - Processing line number: 915
  3182. -* NOTICE *- 21:50:33.650 - 33253426 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 21 on
  3183. -* NOTICE *- 21:50:33.650 - 33253448 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 915, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3184. -* NOTICE *- 21:50:33.650 - 33253492 - FormatCmdLine::GetNextLine() - Processing line number: 916
  3185. -* NOTICE *- 21:50:33.650 - 33253520 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 22 on
  3186. -* NOTICE *- 21:50:33.650 - 33253546 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 916, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3187. -* NOTICE *- 21:50:33.650 - 33253594 - FormatCmdLine::GetNextLine() - Processing line number: 917
  3188. -* NOTICE *- 21:50:33.650 - 33253618 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 23 on
  3189. -* NOTICE *- 21:50:33.650 - 33253644 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 917, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3190. -* NOTICE *- 21:50:33.650 - 33253690 - FormatCmdLine::GetNextLine() - Processing line number: 918
  3191. -* NOTICE *- 21:50:33.650 - 33253710 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 24 on
  3192. -* NOTICE *- 21:50:33.650 - 33253732 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 918, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3193. -* NOTICE *- 21:50:33.650 - 33253776 - FormatCmdLine::GetNextLine() - Processing line number: 919
  3194. -* NOTICE *- 21:50:33.650 - 33253794 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 25 on
  3195. -* NOTICE *- 21:50:33.650 - 33253818 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 919, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3196. -* NOTICE *- 21:50:33.650 - 33253860 - FormatCmdLine::GetNextLine() - Processing line number: 920
  3197. -* NOTICE *- 21:50:33.650 - 33253880 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 26 on
  3198. -* NOTICE *- 21:50:33.650 - 33253902 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 920, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3199. -* NOTICE *- 21:50:33.651 - 33253956 - FormatCmdLine::GetNextLine() - Processing line number: 921
  3200. -* NOTICE *- 21:50:33.651 - 33253978 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 27 on
  3201. -* NOTICE *- 21:50:33.651 - 33254000 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 921, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3202. -* NOTICE *- 21:50:33.651 - 33254044 - FormatCmdLine::GetNextLine() - Processing line number: 922
  3203. -* NOTICE *- 21:50:33.651 - 33254064 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 28 on
  3204. -* NOTICE *- 21:50:33.651 - 33254086 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 922, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3205. -* NOTICE *- 21:50:33.651 - 33254128 - FormatCmdLine::GetNextLine() - Processing line number: 923
  3206. -* NOTICE *- 21:50:33.651 - 33254148 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 29 on
  3207. -* NOTICE *- 21:50:33.651 - 33254170 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 923, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3208. -* NOTICE *- 21:50:33.651 - 33254214 - FormatCmdLine::GetNextLine() - Processing line number: 924
  3209. -* NOTICE *- 21:50:33.651 - 33254238 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 30 on
  3210. -* NOTICE *- 21:50:33.651 - 33254264 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 924, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3211. -* NOTICE *- 21:50:33.651 - 33254308 - FormatCmdLine::GetNextLine() - Processing line number: 925
  3212. -* NOTICE *- 21:50:33.651 - 33254328 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT1" 31 on
  3213. -* NOTICE *- 21:50:33.651 - 33254350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 925, Command Line: -SetClusterDisplay "Spike Window 1" "TT1" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3214. -* NOTICE *- 21:50:33.651 - 33254392 - FormatCmdLine::GetNextLine() - Processing line number: 926
  3215. -* NOTICE *- 21:50:33.651 - 33254412 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 0 0 1
  3216. -* NOTICE *- 21:50:33.651 - 33254434 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 926, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3217. -* NOTICE *- 21:50:33.657 - 33260864 - FormatCmdLine::GetNextLine() - Processing line number: 927
  3218. -* NOTICE *- 21:50:33.657 - 33260902 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 0 -3000 32767 32767 -3000
  3219. -* NOTICE *- 21:50:33.657 - 33260926 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 927, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3220. -* NOTICE *- 21:50:33.658 - 33260994 - FormatCmdLine::GetNextLine() - Processing line number: 928
  3221. -* NOTICE *- 21:50:33.658 - 33261014 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 1 0 2
  3222. -* NOTICE *- 21:50:33.658 - 33261038 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 928, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3223. -* NOTICE *- 21:50:33.658 - 33261108 - FormatCmdLine::GetNextLine() - Processing line number: 929
  3224. -* NOTICE *- 21:50:33.658 - 33261132 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 1 -3000 32767 32767 -3000
  3225. -* NOTICE *- 21:50:33.658 - 33261154 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 929, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3226. -* NOTICE *- 21:50:33.658 - 33261214 - FormatCmdLine::GetNextLine() - Processing line number: 930
  3227. -* NOTICE *- 21:50:33.658 - 33261234 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 2 0 3
  3228. -* NOTICE *- 21:50:33.658 - 33261258 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 930, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3229. -* NOTICE *- 21:50:33.658 - 33261352 - FormatCmdLine::GetNextLine() - Processing line number: 931
  3230. -* NOTICE *- 21:50:33.658 - 33261374 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 2 -3000 32767 32767 -3000
  3231. -* NOTICE *- 21:50:33.658 - 33261398 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 931, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3232. -* NOTICE *- 21:50:33.658 - 33261466 - FormatCmdLine::GetNextLine() - Processing line number: 932
  3233. -* NOTICE *- 21:50:33.658 - 33261488 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 3 1 2
  3234. -* NOTICE *- 21:50:33.658 - 33261510 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 932, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3235. -* NOTICE *- 21:50:33.658 - 33261582 - FormatCmdLine::GetNextLine() - Processing line number: 933
  3236. -* NOTICE *- 21:50:33.658 - 33261606 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 3 -3000 32767 32767 -3000
  3237. -* NOTICE *- 21:50:33.658 - 33261628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 933, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3238. -* NOTICE *- 21:50:33.658 - 33261692 - FormatCmdLine::GetNextLine() - Processing line number: 934
  3239. -* NOTICE *- 21:50:33.658 - 33261712 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 4 1 3
  3240. -* NOTICE *- 21:50:33.658 - 33261734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 934, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3241. -* NOTICE *- 21:50:33.658 - 33261804 - FormatCmdLine::GetNextLine() - Processing line number: 935
  3242. -* NOTICE *- 21:50:33.658 - 33261828 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 4 -3000 32767 32767 -3000
  3243. -* NOTICE *- 21:50:33.658 - 33261850 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 935, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3244. -* NOTICE *- 21:50:33.658 - 33261910 - FormatCmdLine::GetNextLine() - Processing line number: 936
  3245. -* NOTICE *- 21:50:33.659 - 33261934 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT1" 5 2 3
  3246. -* NOTICE *- 21:50:33.659 - 33261962 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 936, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT1" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3247. -* NOTICE *- 21:50:33.659 - 33262032 - FormatCmdLine::GetNextLine() - Processing line number: 937
  3248. -* NOTICE *- 21:50:33.659 - 33262056 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT1" 5 -3000 32767 32767 -3000
  3249. -* NOTICE *- 21:50:33.659 - 33262078 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 937, Command Line: -SetFeaturePlotView "Spike Window 1" "TT1" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3250. -* NOTICE *- 21:50:33.659 - 33262138 - FormatCmdLine::GetNextLine() - Processing line number: 938
  3251. -* NOTICE *- 21:50:33.659 - 33262158 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT2"
  3252. -* NOTICE *- 21:50:33.659 - 33262180 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 938, Command Line: -AddPlot "Spike Window 1" "TT2", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3253. -* NOTICE *- 21:50:33.675 - 33278084 - FormatCmdLine::GetNextLine() - Processing line number: 939
  3254. -* NOTICE *- 21:50:33.675 - 33278114 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT2" "True"
  3255. -* NOTICE *- 21:50:33.675 - 33278138 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 939, Command Line: -SetPlotEnabled "Spike Window 1" "TT2" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3256. -* NOTICE *- 21:50:33.675 - 33278198 - FormatCmdLine::GetNextLine() - Processing line number: 940
  3257. -* NOTICE *- 21:50:33.675 - 33278232 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 0 on
  3258. -* NOTICE *- 21:50:33.675 - 33278264 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 940, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3259. -* NOTICE *- 21:50:33.675 - 33278326 - FormatCmdLine::GetNextLine() - Processing line number: 941
  3260. -* NOTICE *- 21:50:33.675 - 33278356 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 1 on
  3261. -* NOTICE *- 21:50:33.675 - 33278386 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 941, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3262. -* NOTICE *- 21:50:33.675 - 33278450 - FormatCmdLine::GetNextLine() - Processing line number: 942
  3263. -* NOTICE *- 21:50:33.675 - 33278480 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 2 on
  3264. -* NOTICE *- 21:50:33.675 - 33278512 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 942, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3265. -* NOTICE *- 21:50:33.675 - 33278580 - FormatCmdLine::GetNextLine() - Processing line number: 943
  3266. -* NOTICE *- 21:50:33.675 - 33278612 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 3 on
  3267. -* NOTICE *- 21:50:33.675 - 33278644 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 943, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3268. -* NOTICE *- 21:50:33.675 - 33278708 - FormatCmdLine::GetNextLine() - Processing line number: 944
  3269. -* NOTICE *- 21:50:33.675 - 33278738 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 4 on
  3270. -* NOTICE *- 21:50:33.675 - 33278774 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 944, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3271. -* NOTICE *- 21:50:33.675 - 33278840 - FormatCmdLine::GetNextLine() - Processing line number: 945
  3272. -* NOTICE *- 21:50:33.675 - 33278870 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 5 on
  3273. -* NOTICE *- 21:50:33.675 - 33278902 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 945, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3274. -* NOTICE *- 21:50:33.676 - 33278972 - FormatCmdLine::GetNextLine() - Processing line number: 946
  3275. -* NOTICE *- 21:50:33.676 - 33279004 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 6 on
  3276. -* NOTICE *- 21:50:33.676 - 33279038 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 946, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3277. -* NOTICE *- 21:50:33.676 - 33279108 - FormatCmdLine::GetNextLine() - Processing line number: 947
  3278. -* NOTICE *- 21:50:33.676 - 33279136 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 7 on
  3279. -* NOTICE *- 21:50:33.676 - 33279160 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 947, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3280. -* NOTICE *- 21:50:33.676 - 33279212 - FormatCmdLine::GetNextLine() - Processing line number: 948
  3281. -* NOTICE *- 21:50:33.676 - 33279234 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 8 on
  3282. -* NOTICE *- 21:50:33.676 - 33279256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 948, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3283. -* NOTICE *- 21:50:33.676 - 33279300 - FormatCmdLine::GetNextLine() - Processing line number: 949
  3284. -* NOTICE *- 21:50:33.676 - 33279320 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 9 on
  3285. -* NOTICE *- 21:50:33.676 - 33279342 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 949, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3286. -* NOTICE *- 21:50:33.676 - 33279384 - FormatCmdLine::GetNextLine() - Processing line number: 950
  3287. -* NOTICE *- 21:50:33.676 - 33279404 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 10 on
  3288. -* NOTICE *- 21:50:33.676 - 33279426 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 950, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3289. -* NOTICE *- 21:50:33.676 - 33279470 - FormatCmdLine::GetNextLine() - Processing line number: 951
  3290. -* NOTICE *- 21:50:33.676 - 33279490 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 11 on
  3291. -* NOTICE *- 21:50:33.676 - 33279512 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 951, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3292. -* NOTICE *- 21:50:33.676 - 33279554 - FormatCmdLine::GetNextLine() - Processing line number: 952
  3293. -* NOTICE *- 21:50:33.676 - 33279574 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 12 on
  3294. -* NOTICE *- 21:50:33.676 - 33279596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 952, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3295. -* NOTICE *- 21:50:33.676 - 33279640 - FormatCmdLine::GetNextLine() - Processing line number: 953
  3296. -* NOTICE *- 21:50:33.676 - 33279660 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 13 on
  3297. -* NOTICE *- 21:50:33.676 - 33279680 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 953, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3298. -* NOTICE *- 21:50:33.676 - 33279724 - FormatCmdLine::GetNextLine() - Processing line number: 954
  3299. -* NOTICE *- 21:50:33.676 - 33279744 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 14 on
  3300. -* NOTICE *- 21:50:33.676 - 33279766 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 954, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3301. -* NOTICE *- 21:50:33.676 - 33279808 - FormatCmdLine::GetNextLine() - Processing line number: 955
  3302. -* NOTICE *- 21:50:33.676 - 33279828 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 15 on
  3303. -* NOTICE *- 21:50:33.676 - 33279850 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 955, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3304. -* NOTICE *- 21:50:33.676 - 33279898 - FormatCmdLine::GetNextLine() - Processing line number: 956
  3305. -* NOTICE *- 21:50:33.676 - 33279918 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 16 on
  3306. -* NOTICE *- 21:50:33.677 - 33279944 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 956, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3307. -* NOTICE *- 21:50:33.677 - 33279990 - FormatCmdLine::GetNextLine() - Processing line number: 957
  3308. -* NOTICE *- 21:50:33.677 - 33280010 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 17 on
  3309. -* NOTICE *- 21:50:33.677 - 33280032 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 957, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3310. -* NOTICE *- 21:50:33.677 - 33280074 - FormatCmdLine::GetNextLine() - Processing line number: 958
  3311. -* NOTICE *- 21:50:33.677 - 33280094 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 18 on
  3312. -* NOTICE *- 21:50:33.677 - 33280116 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 958, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3313. -* NOTICE *- 21:50:33.677 - 33280160 - FormatCmdLine::GetNextLine() - Processing line number: 959
  3314. -* NOTICE *- 21:50:33.677 - 33280178 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 19 on
  3315. -* NOTICE *- 21:50:33.677 - 33280200 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 959, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3316. -* NOTICE *- 21:50:33.677 - 33280244 - FormatCmdLine::GetNextLine() - Processing line number: 960
  3317. -* NOTICE *- 21:50:33.677 - 33280264 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 20 on
  3318. -* NOTICE *- 21:50:33.677 - 33280286 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 960, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3319. -* NOTICE *- 21:50:33.677 - 33280330 - FormatCmdLine::GetNextLine() - Processing line number: 961
  3320. -* NOTICE *- 21:50:33.677 - 33280348 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 21 on
  3321. -* NOTICE *- 21:50:33.677 - 33280372 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 961, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3322. -* NOTICE *- 21:50:33.677 - 33280414 - FormatCmdLine::GetNextLine() - Processing line number: 962
  3323. -* NOTICE *- 21:50:33.677 - 33280434 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 22 on
  3324. -* NOTICE *- 21:50:33.677 - 33280456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 962, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3325. -* NOTICE *- 21:50:33.677 - 33280500 - FormatCmdLine::GetNextLine() - Processing line number: 963
  3326. -* NOTICE *- 21:50:33.677 - 33280518 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 23 on
  3327. -* NOTICE *- 21:50:33.677 - 33280540 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 963, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3328. -* NOTICE *- 21:50:33.677 - 33280588 - FormatCmdLine::GetNextLine() - Processing line number: 964
  3329. -* NOTICE *- 21:50:33.677 - 33280610 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 24 on
  3330. -* NOTICE *- 21:50:33.677 - 33280632 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 964, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3331. -* NOTICE *- 21:50:33.677 - 33280676 - FormatCmdLine::GetNextLine() - Processing line number: 965
  3332. -* NOTICE *- 21:50:33.677 - 33280694 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 25 on
  3333. -* NOTICE *- 21:50:33.677 - 33280718 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 965, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3334. -* NOTICE *- 21:50:33.677 - 33280760 - FormatCmdLine::GetNextLine() - Processing line number: 966
  3335. -* NOTICE *- 21:50:33.677 - 33280780 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 26 on
  3336. -* NOTICE *- 21:50:33.677 - 33280802 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 966, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3337. -* NOTICE *- 21:50:33.677 - 33280846 - FormatCmdLine::GetNextLine() - Processing line number: 967
  3338. -* NOTICE *- 21:50:33.677 - 33280864 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 27 on
  3339. -* NOTICE *- 21:50:33.677 - 33280886 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 967, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3340. -* NOTICE *- 21:50:33.677 - 33280932 - FormatCmdLine::GetNextLine() - Processing line number: 968
  3341. -* NOTICE *- 21:50:33.678 - 33280954 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 28 on
  3342. -* NOTICE *- 21:50:33.678 - 33280976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 968, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3343. -* NOTICE *- 21:50:33.678 - 33281020 - FormatCmdLine::GetNextLine() - Processing line number: 969
  3344. -* NOTICE *- 21:50:33.678 - 33281040 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 29 on
  3345. -* NOTICE *- 21:50:33.678 - 33281062 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 969, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3346. -* NOTICE *- 21:50:33.678 - 33281106 - FormatCmdLine::GetNextLine() - Processing line number: 970
  3347. -* NOTICE *- 21:50:33.678 - 33281124 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 30 on
  3348. -* NOTICE *- 21:50:33.678 - 33281146 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 970, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3349. -* NOTICE *- 21:50:33.678 - 33281190 - FormatCmdLine::GetNextLine() - Processing line number: 971
  3350. -* NOTICE *- 21:50:33.678 - 33281208 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT2" 31 on
  3351. -* NOTICE *- 21:50:33.678 - 33281230 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 971, Command Line: -SetClusterDisplay "Spike Window 1" "TT2" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3352. -* NOTICE *- 21:50:33.678 - 33281280 - FormatCmdLine::GetNextLine() - Processing line number: 972
  3353. -* NOTICE *- 21:50:33.678 - 33281302 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 0 0 1
  3354. -* NOTICE *- 21:50:33.678 - 33281324 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 972, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3355. -* NOTICE *- 21:50:33.686 - 33289908 - FormatCmdLine::GetNextLine() - Processing line number: 973
  3356. -* NOTICE *- 21:50:33.687 - 33289952 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 0 -3000 32767 32767 -3000
  3357. -* NOTICE *- 21:50:33.687 - 33289976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 973, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3358. -* NOTICE *- 21:50:33.695 - 33298536 - FormatCmdLine::GetNextLine() - Processing line number: 974
  3359. -* NOTICE *- 21:50:33.695 - 33298892 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 1 0 2
  3360. -* NOTICE *- 21:50:33.695 - 33298918 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 974, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3361. -* NOTICE *- 21:50:33.731 - 33333458 - FormatCmdLine::GetNextLine() - Processing line number: 975
  3362. -* NOTICE *- 21:50:33.731 - 33333490 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 1 -3000 32767 32767 -3000
  3363. -* NOTICE *- 21:50:33.731 - 33333512 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 975, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3364. -* NOTICE *- 21:50:33.731 - 33333574 - FormatCmdLine::GetNextLine() - Processing line number: 976
  3365. -* NOTICE *- 21:50:33.731 - 33333594 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 2 0 3
  3366. -* NOTICE *- 21:50:33.731 - 33333618 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 976, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3367. -* NOTICE *- 21:50:33.731 - 33333688 - FormatCmdLine::GetNextLine() - Processing line number: 977
  3368. -* NOTICE *- 21:50:33.731 - 33333712 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 2 -3000 32767 32767 -3000
  3369. -* NOTICE *- 21:50:33.731 - 33333734 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 977, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3370. -* NOTICE *- 21:50:33.731 - 33333796 - FormatCmdLine::GetNextLine() - Processing line number: 978
  3371. -* NOTICE *- 21:50:33.731 - 33333816 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 3 1 2
  3372. -* NOTICE *- 21:50:33.731 - 33333838 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 978, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3373. -* NOTICE *- 21:50:33.731 - 33333908 - FormatCmdLine::GetNextLine() - Processing line number: 979
  3374. -* NOTICE *- 21:50:33.731 - 33333934 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 3 -3000 32767 32767 -3000
  3375. -* NOTICE *- 21:50:33.732 - 33333966 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 979, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3376. -* NOTICE *- 21:50:33.732 - 33334074 - FormatCmdLine::GetNextLine() - Processing line number: 980
  3377. -* NOTICE *- 21:50:33.732 - 33334098 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 4 1 3
  3378. -* NOTICE *- 21:50:33.732 - 33334120 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 980, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3379. -* NOTICE *- 21:50:33.732 - 33334194 - FormatCmdLine::GetNextLine() - Processing line number: 981
  3380. -* NOTICE *- 21:50:33.732 - 33334218 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 4 -3000 32767 32767 -3000
  3381. -* NOTICE *- 21:50:33.732 - 33334240 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 981, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3382. -* NOTICE *- 21:50:33.732 - 33334300 - FormatCmdLine::GetNextLine() - Processing line number: 982
  3383. -* NOTICE *- 21:50:33.732 - 33334320 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT2" 5 2 3
  3384. -* NOTICE *- 21:50:33.732 - 33334342 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 982, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT2" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3385. -* NOTICE *- 21:50:33.732 - 33334412 - FormatCmdLine::GetNextLine() - Processing line number: 983
  3386. -* NOTICE *- 21:50:33.732 - 33334434 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT2" 5 -3000 32767 32767 -3000
  3387. -* NOTICE *- 21:50:33.732 - 33334458 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 983, Command Line: -SetFeaturePlotView "Spike Window 1" "TT2" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3388. -* NOTICE *- 21:50:33.732 - 33334516 - FormatCmdLine::GetNextLine() - Processing line number: 984
  3389. -* NOTICE *- 21:50:33.732 - 33334536 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT3"
  3390. -* NOTICE *- 21:50:33.732 - 33334558 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 984, Command Line: -AddPlot "Spike Window 1" "TT3", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3391. -* NOTICE *- 21:50:33.740 - 33342922 - FormatCmdLine::GetNextLine() - Processing line number: 985
  3392. -* NOTICE *- 21:50:33.741 - 33342958 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT3" "True"
  3393. -* NOTICE *- 21:50:33.741 - 33342982 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 985, Command Line: -SetPlotEnabled "Spike Window 1" "TT3" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3394. -* NOTICE *- 21:50:33.741 - 33343030 - FormatCmdLine::GetNextLine() - Processing line number: 986
  3395. -* NOTICE *- 21:50:33.741 - 33343050 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 0 on
  3396. -* NOTICE *- 21:50:33.741 - 33343074 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 986, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3397. -* NOTICE *- 21:50:33.741 - 33343118 - FormatCmdLine::GetNextLine() - Processing line number: 987
  3398. -* NOTICE *- 21:50:33.741 - 33343138 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 1 on
  3399. -* NOTICE *- 21:50:33.741 - 33343166 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 987, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3400. -* NOTICE *- 21:50:33.741 - 33343214 - FormatCmdLine::GetNextLine() - Processing line number: 988
  3401. -* NOTICE *- 21:50:33.741 - 33343234 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 2 on
  3402. -* NOTICE *- 21:50:33.741 - 33343256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 988, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3403. -* NOTICE *- 21:50:33.741 - 33343300 - FormatCmdLine::GetNextLine() - Processing line number: 989
  3404. -* NOTICE *- 21:50:33.741 - 33343320 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 3 on
  3405. -* NOTICE *- 21:50:33.741 - 33343342 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 989, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3406. -* NOTICE *- 21:50:33.741 - 33343388 - FormatCmdLine::GetNextLine() - Processing line number: 990
  3407. -* NOTICE *- 21:50:33.741 - 33343406 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 4 on
  3408. -* NOTICE *- 21:50:33.741 - 33343428 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 990, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3409. -* NOTICE *- 21:50:33.741 - 33343472 - FormatCmdLine::GetNextLine() - Processing line number: 991
  3410. -* NOTICE *- 21:50:33.741 - 33343492 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 5 on
  3411. -* NOTICE *- 21:50:33.741 - 33343514 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 991, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3412. -* NOTICE *- 21:50:33.741 - 33343562 - FormatCmdLine::GetNextLine() - Processing line number: 992
  3413. -* NOTICE *- 21:50:33.741 - 33343582 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 6 on
  3414. -* NOTICE *- 21:50:33.741 - 33343604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 992, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3415. -* NOTICE *- 21:50:33.741 - 33343648 - FormatCmdLine::GetNextLine() - Processing line number: 993
  3416. -* NOTICE *- 21:50:33.741 - 33343668 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 7 on
  3417. -* NOTICE *- 21:50:33.741 - 33343690 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 993, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3418. -* NOTICE *- 21:50:33.741 - 33343734 - FormatCmdLine::GetNextLine() - Processing line number: 994
  3419. -* NOTICE *- 21:50:33.741 - 33343754 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 8 on
  3420. -* NOTICE *- 21:50:33.741 - 33343774 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 994, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3421. -* NOTICE *- 21:50:33.741 - 33343818 - FormatCmdLine::GetNextLine() - Processing line number: 995
  3422. -* NOTICE *- 21:50:33.741 - 33343838 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 9 on
  3423. -* NOTICE *- 21:50:33.742 - 33343952 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 995, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3424. -* NOTICE *- 21:50:33.742 - 33344004 - FormatCmdLine::GetNextLine() - Processing line number: 996
  3425. -* NOTICE *- 21:50:33.742 - 33344026 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 10 on
  3426. -* NOTICE *- 21:50:33.742 - 33344048 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 996, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3427. -* NOTICE *- 21:50:33.742 - 33344092 - FormatCmdLine::GetNextLine() - Processing line number: 997
  3428. -* NOTICE *- 21:50:33.742 - 33344112 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 11 on
  3429. -* NOTICE *- 21:50:33.742 - 33344134 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 997, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3430. -* NOTICE *- 21:50:33.742 - 33344178 - FormatCmdLine::GetNextLine() - Processing line number: 998
  3431. -* NOTICE *- 21:50:33.742 - 33344198 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 12 on
  3432. -* NOTICE *- 21:50:33.742 - 33344220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 998, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3433. -* NOTICE *- 21:50:33.742 - 33344264 - FormatCmdLine::GetNextLine() - Processing line number: 999
  3434. -* NOTICE *- 21:50:33.742 - 33344284 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 13 on
  3435. -* NOTICE *- 21:50:33.742 - 33344306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 999, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3436. -* NOTICE *- 21:50:33.742 - 33344352 - FormatCmdLine::GetNextLine() - Processing line number: 1000
  3437. -* NOTICE *- 21:50:33.742 - 33344372 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 14 on
  3438. -* NOTICE *- 21:50:33.742 - 33344392 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1000, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3439. -* NOTICE *- 21:50:33.742 - 33344438 - FormatCmdLine::GetNextLine() - Processing line number: 1001
  3440. -* NOTICE *- 21:50:33.742 - 33344458 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 15 on
  3441. -* NOTICE *- 21:50:33.742 - 33344480 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1001, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3442. -* NOTICE *- 21:50:33.742 - 33344524 - FormatCmdLine::GetNextLine() - Processing line number: 1002
  3443. -* NOTICE *- 21:50:33.742 - 33344544 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 16 on
  3444. -* NOTICE *- 21:50:33.742 - 33344566 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1002, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3445. -* NOTICE *- 21:50:33.742 - 33344610 - FormatCmdLine::GetNextLine() - Processing line number: 1003
  3446. -* NOTICE *- 21:50:33.742 - 33344630 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 17 on
  3447. -* NOTICE *- 21:50:33.742 - 33344656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1003, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3448. -* NOTICE *- 21:50:33.742 - 33344700 - FormatCmdLine::GetNextLine() - Processing line number: 1004
  3449. -* NOTICE *- 21:50:33.742 - 33344720 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 18 on
  3450. -* NOTICE *- 21:50:33.742 - 33344742 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1004, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3451. -* NOTICE *- 21:50:33.742 - 33344786 - FormatCmdLine::GetNextLine() - Processing line number: 1005
  3452. -* NOTICE *- 21:50:33.742 - 33344806 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 19 on
  3453. -* NOTICE *- 21:50:33.742 - 33344828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1005, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3454. -* NOTICE *- 21:50:33.742 - 33344872 - FormatCmdLine::GetNextLine() - Processing line number: 1006
  3455. -* NOTICE *- 21:50:33.742 - 33344892 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 20 on
  3456. -* NOTICE *- 21:50:33.742 - 33344914 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1006, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3457. -* NOTICE *- 21:50:33.743 - 33344962 - FormatCmdLine::GetNextLine() - Processing line number: 1007
  3458. -* NOTICE *- 21:50:33.743 - 33344982 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 21 on
  3459. -* NOTICE *- 21:50:33.743 - 33345004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1007, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3460. -* NOTICE *- 21:50:33.743 - 33345048 - FormatCmdLine::GetNextLine() - Processing line number: 1008
  3461. -* NOTICE *- 21:50:33.743 - 33345068 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 22 on
  3462. -* NOTICE *- 21:50:33.743 - 33345090 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1008, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3463. -* NOTICE *- 21:50:33.743 - 33345134 - FormatCmdLine::GetNextLine() - Processing line number: 1009
  3464. -* NOTICE *- 21:50:33.743 - 33345154 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 23 on
  3465. -* NOTICE *- 21:50:33.743 - 33345176 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1009, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3466. -* NOTICE *- 21:50:33.743 - 33345220 - FormatCmdLine::GetNextLine() - Processing line number: 1010
  3467. -* NOTICE *- 21:50:33.743 - 33345240 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 24 on
  3468. -* NOTICE *- 21:50:33.743 - 33345262 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1010, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3469. -* NOTICE *- 21:50:33.743 - 33345324 - FormatCmdLine::GetNextLine() - Processing line number: 1011
  3470. -* NOTICE *- 21:50:33.743 - 33345344 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 25 on
  3471. -* NOTICE *- 21:50:33.743 - 33345368 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1011, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3472. -* NOTICE *- 21:50:33.743 - 33345414 - FormatCmdLine::GetNextLine() - Processing line number: 1012
  3473. -* NOTICE *- 21:50:33.743 - 33345434 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 26 on
  3474. -* NOTICE *- 21:50:33.743 - 33345456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1012, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3475. -* NOTICE *- 21:50:33.743 - 33345500 - FormatCmdLine::GetNextLine() - Processing line number: 1013
  3476. -* NOTICE *- 21:50:33.743 - 33345520 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 27 on
  3477. -* NOTICE *- 21:50:33.743 - 33345542 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1013, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3478. -* NOTICE *- 21:50:33.743 - 33345586 - FormatCmdLine::GetNextLine() - Processing line number: 1014
  3479. -* NOTICE *- 21:50:33.743 - 33345604 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 28 on
  3480. -* NOTICE *- 21:50:33.743 - 33345628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1014, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3481. -* NOTICE *- 21:50:33.743 - 33345672 - FormatCmdLine::GetNextLine() - Processing line number: 1015
  3482. -* NOTICE *- 21:50:33.743 - 33345692 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 29 on
  3483. -* NOTICE *- 21:50:33.743 - 33345714 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1015, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3484. -* NOTICE *- 21:50:33.743 - 33345758 - FormatCmdLine::GetNextLine() - Processing line number: 1016
  3485. -* NOTICE *- 21:50:33.743 - 33345778 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 30 on
  3486. -* NOTICE *- 21:50:33.743 - 33345800 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1016, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3487. -* NOTICE *- 21:50:33.743 - 33345844 - FormatCmdLine::GetNextLine() - Processing line number: 1017
  3488. -* NOTICE *- 21:50:33.743 - 33345862 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT3" 31 on
  3489. -* NOTICE *- 21:50:33.743 - 33345886 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1017, Command Line: -SetClusterDisplay "Spike Window 1" "TT3" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3490. -* NOTICE *- 21:50:33.743 - 33345930 - FormatCmdLine::GetNextLine() - Processing line number: 1018
  3491. -* NOTICE *- 21:50:33.744 - 33345952 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 0 0 1
  3492. -* NOTICE *- 21:50:33.744 - 33345976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1018, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3493. -* NOTICE *- 21:50:33.744 - 33346036 - FormatCmdLine::GetNextLine() - Processing line number: 1019
  3494. -* NOTICE *- 21:50:33.744 - 33346058 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 0 -3000 32767 32767 -3000
  3495. -* NOTICE *- 21:50:33.744 - 33346084 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1019, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3496. -* NOTICE *- 21:50:33.744 - 33346144 - FormatCmdLine::GetNextLine() - Processing line number: 1020
  3497. -* NOTICE *- 21:50:33.744 - 33346164 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 1 0 2
  3498. -* NOTICE *- 21:50:33.744 - 33346186 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1020, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3499. -* NOTICE *- 21:50:33.744 - 33346246 - FormatCmdLine::GetNextLine() - Processing line number: 1021
  3500. -* NOTICE *- 21:50:33.744 - 33346266 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 1 -3000 32767 32767 -3000
  3501. -* NOTICE *- 21:50:33.744 - 33346290 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1021, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3502. -* NOTICE *- 21:50:33.744 - 33346348 - FormatCmdLine::GetNextLine() - Processing line number: 1022
  3503. -* NOTICE *- 21:50:33.744 - 33346368 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 2 0 3
  3504. -* NOTICE *- 21:50:33.744 - 33346390 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1022, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3505. -* NOTICE *- 21:50:33.744 - 33346452 - FormatCmdLine::GetNextLine() - Processing line number: 1023
  3506. -* NOTICE *- 21:50:33.744 - 33346476 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 2 -3000 32767 32767 -3000
  3507. -* NOTICE *- 21:50:33.744 - 33346498 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1023, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3508. -* NOTICE *- 21:50:33.744 - 33346558 - FormatCmdLine::GetNextLine() - Processing line number: 1024
  3509. -* NOTICE *- 21:50:33.744 - 33346578 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 3 1 2
  3510. -* NOTICE *- 21:50:33.744 - 33346600 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1024, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3511. -* NOTICE *- 21:50:33.744 - 33346658 - FormatCmdLine::GetNextLine() - Processing line number: 1025
  3512. -* NOTICE *- 21:50:33.744 - 33346680 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 3 -3000 32767 32767 -3000
  3513. -* NOTICE *- 21:50:33.744 - 33346702 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1025, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3514. -* NOTICE *- 21:50:33.744 - 33346762 - FormatCmdLine::GetNextLine() - Processing line number: 1026
  3515. -* NOTICE *- 21:50:33.744 - 33346782 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 4 1 3
  3516. -* NOTICE *- 21:50:33.744 - 33346804 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1026, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3517. -* NOTICE *- 21:50:33.744 - 33346864 - FormatCmdLine::GetNextLine() - Processing line number: 1027
  3518. -* NOTICE *- 21:50:33.744 - 33346886 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 4 -3000 32767 32767 -3000
  3519. -* NOTICE *- 21:50:33.744 - 33346910 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1027, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3520. -* NOTICE *- 21:50:33.745 - 33346972 - FormatCmdLine::GetNextLine() - Processing line number: 1028
  3521. -* NOTICE *- 21:50:33.745 - 33346994 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT3" 5 2 3
  3522. -* NOTICE *- 21:50:33.745 - 33347016 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1028, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT3" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3523. -* NOTICE *- 21:50:33.745 - 33347074 - FormatCmdLine::GetNextLine() - Processing line number: 1029
  3524. -* NOTICE *- 21:50:33.745 - 33347096 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT3" 5 -3000 32767 32767 -3000
  3525. -* NOTICE *- 21:50:33.745 - 33347120 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1029, Command Line: -SetFeaturePlotView "Spike Window 1" "TT3" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3526. -* NOTICE *- 21:50:33.745 - 33347178 - FormatCmdLine::GetNextLine() - Processing line number: 1030
  3527. -* NOTICE *- 21:50:33.745 - 33347198 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT4"
  3528. -* NOTICE *- 21:50:33.745 - 33347220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1030, Command Line: -AddPlot "Spike Window 1" "TT4", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3529. -* NOTICE *- 21:50:33.754 - 33356312 - FormatCmdLine::GetNextLine() - Processing line number: 1031
  3530. -* NOTICE *- 21:50:33.754 - 33356342 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT4" "True"
  3531. -* NOTICE *- 21:50:33.754 - 33356368 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1031, Command Line: -SetPlotEnabled "Spike Window 1" "TT4" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3532. -* NOTICE *- 21:50:33.754 - 33356416 - FormatCmdLine::GetNextLine() - Processing line number: 1032
  3533. -* NOTICE *- 21:50:33.754 - 33356438 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 0 on
  3534. -* NOTICE *- 21:50:33.754 - 33356460 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1032, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3535. -* NOTICE *- 21:50:33.754 - 33356506 - FormatCmdLine::GetNextLine() - Processing line number: 1033
  3536. -* NOTICE *- 21:50:33.754 - 33356526 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 1 on
  3537. -* NOTICE *- 21:50:33.754 - 33356548 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1033, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3538. -* NOTICE *- 21:50:33.754 - 33356592 - FormatCmdLine::GetNextLine() - Processing line number: 1034
  3539. -* NOTICE *- 21:50:33.754 - 33356612 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 2 on
  3540. -* NOTICE *- 21:50:33.754 - 33356634 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1034, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3541. -* NOTICE *- 21:50:33.754 - 33356682 - FormatCmdLine::GetNextLine() - Processing line number: 1035
  3542. -* NOTICE *- 21:50:33.754 - 33356702 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 3 on
  3543. -* NOTICE *- 21:50:33.754 - 33356724 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1035, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3544. -* NOTICE *- 21:50:33.754 - 33356782 - FormatCmdLine::GetNextLine() - Processing line number: 1036
  3545. -* NOTICE *- 21:50:33.754 - 33356804 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 4 on
  3546. -* NOTICE *- 21:50:33.754 - 33356826 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1036, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3547. -* NOTICE *- 21:50:33.754 - 33356870 - FormatCmdLine::GetNextLine() - Processing line number: 1037
  3548. -* NOTICE *- 21:50:33.754 - 33356890 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 5 on
  3549. -* NOTICE *- 21:50:33.754 - 33356912 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1037, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3550. -* NOTICE *- 21:50:33.755 - 33356960 - FormatCmdLine::GetNextLine() - Processing line number: 1038
  3551. -* NOTICE *- 21:50:33.755 - 33356982 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 6 on
  3552. -* NOTICE *- 21:50:33.755 - 33357004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1038, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3553. -* NOTICE *- 21:50:33.755 - 33357048 - FormatCmdLine::GetNextLine() - Processing line number: 1039
  3554. -* NOTICE *- 21:50:33.755 - 33357068 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 7 on
  3555. -* NOTICE *- 21:50:33.755 - 33357090 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1039, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3556. -* NOTICE *- 21:50:33.755 - 33357134 - FormatCmdLine::GetNextLine() - Processing line number: 1040
  3557. -* NOTICE *- 21:50:33.755 - 33357154 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 8 on
  3558. -* NOTICE *- 21:50:33.755 - 33357176 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1040, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3559. -* NOTICE *- 21:50:33.755 - 33357220 - FormatCmdLine::GetNextLine() - Processing line number: 1041
  3560. -* NOTICE *- 21:50:33.755 - 33357240 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 9 on
  3561. -* NOTICE *- 21:50:33.755 - 33357262 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1041, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3562. -* NOTICE *- 21:50:33.755 - 33357306 - FormatCmdLine::GetNextLine() - Processing line number: 1042
  3563. -* NOTICE *- 21:50:33.755 - 33357326 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 10 on
  3564. -* NOTICE *- 21:50:33.755 - 33357348 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1042, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3565. -* NOTICE *- 21:50:33.755 - 33357394 - FormatCmdLine::GetNextLine() - Processing line number: 1043
  3566. -* NOTICE *- 21:50:33.755 - 33357416 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 11 on
  3567. -* NOTICE *- 21:50:33.755 - 33357438 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1043, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3568. -* NOTICE *- 21:50:33.755 - 33357482 - FormatCmdLine::GetNextLine() - Processing line number: 1044
  3569. -* NOTICE *- 21:50:33.755 - 33357502 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 12 on
  3570. -* NOTICE *- 21:50:33.755 - 33357524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1044, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3571. -* NOTICE *- 21:50:33.755 - 33357568 - FormatCmdLine::GetNextLine() - Processing line number: 1045
  3572. -* NOTICE *- 21:50:33.755 - 33357588 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 13 on
  3573. -* NOTICE *- 21:50:33.755 - 33357610 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1045, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3574. -* NOTICE *- 21:50:33.755 - 33357654 - FormatCmdLine::GetNextLine() - Processing line number: 1046
  3575. -* NOTICE *- 21:50:33.755 - 33357672 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 14 on
  3576. -* NOTICE *- 21:50:33.755 - 33357696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1046, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3577. -* NOTICE *- 21:50:33.755 - 33357738 - FormatCmdLine::GetNextLine() - Processing line number: 1047
  3578. -* NOTICE *- 21:50:33.755 - 33357758 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 15 on
  3579. -* NOTICE *- 21:50:33.755 - 33357780 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1047, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3580. -* NOTICE *- 21:50:33.755 - 33357826 - FormatCmdLine::GetNextLine() - Processing line number: 1048
  3581. -* NOTICE *- 21:50:33.755 - 33357846 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 16 on
  3582. -* NOTICE *- 21:50:33.755 - 33357868 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1048, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3583. -* NOTICE *- 21:50:33.755 - 33357912 - FormatCmdLine::GetNextLine() - Processing line number: 1049
  3584. -* NOTICE *- 21:50:33.755 - 33357934 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 17 on
  3585. -* NOTICE *- 21:50:33.756 - 33357958 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1049, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3586. -* NOTICE *- 21:50:33.756 - 33358004 - FormatCmdLine::GetNextLine() - Processing line number: 1050
  3587. -* NOTICE *- 21:50:33.756 - 33358024 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 18 on
  3588. -* NOTICE *- 21:50:33.756 - 33358046 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1050, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3589. -* NOTICE *- 21:50:33.756 - 33358092 - FormatCmdLine::GetNextLine() - Processing line number: 1051
  3590. -* NOTICE *- 21:50:33.756 - 33358112 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 19 on
  3591. -* NOTICE *- 21:50:33.756 - 33358134 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1051, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3592. -* NOTICE *- 21:50:33.756 - 33358178 - FormatCmdLine::GetNextLine() - Processing line number: 1052
  3593. -* NOTICE *- 21:50:33.756 - 33358198 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 20 on
  3594. -* NOTICE *- 21:50:33.756 - 33358220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1052, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3595. -* NOTICE *- 21:50:33.756 - 33358264 - FormatCmdLine::GetNextLine() - Processing line number: 1053
  3596. -* NOTICE *- 21:50:33.756 - 33358284 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 21 on
  3597. -* NOTICE *- 21:50:33.756 - 33358306 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1053, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3598. -* NOTICE *- 21:50:33.756 - 33358350 - FormatCmdLine::GetNextLine() - Processing line number: 1054
  3599. -* NOTICE *- 21:50:33.756 - 33358370 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 22 on
  3600. -* NOTICE *- 21:50:33.756 - 33358392 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1054, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3601. -* NOTICE *- 21:50:33.756 - 33358436 - FormatCmdLine::GetNextLine() - Processing line number: 1055
  3602. -* NOTICE *- 21:50:33.756 - 33358456 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 23 on
  3603. -* NOTICE *- 21:50:33.756 - 33358478 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1055, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3604. -* NOTICE *- 21:50:33.756 - 33358522 - FormatCmdLine::GetNextLine() - Processing line number: 1056
  3605. -* NOTICE *- 21:50:33.756 - 33358542 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 24 on
  3606. -* NOTICE *- 21:50:33.756 - 33358564 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1056, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3607. -* NOTICE *- 21:50:33.756 - 33358608 - FormatCmdLine::GetNextLine() - Processing line number: 1057
  3608. -* NOTICE *- 21:50:33.756 - 33358628 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 25 on
  3609. -* NOTICE *- 21:50:33.756 - 33358650 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1057, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3610. -* NOTICE *- 21:50:33.756 - 33358708 - FormatCmdLine::GetNextLine() - Processing line number: 1058
  3611. -* NOTICE *- 21:50:33.756 - 33358734 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 26 on
  3612. -* NOTICE *- 21:50:33.756 - 33358760 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1058, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3613. -* NOTICE *- 21:50:33.756 - 33358812 - FormatCmdLine::GetNextLine() - Processing line number: 1059
  3614. -* NOTICE *- 21:50:33.757 - 33359162 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 27 on
  3615. -* NOTICE *- 21:50:33.757 - 33359188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1059, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3616. -* NOTICE *- 21:50:33.757 - 33359236 - FormatCmdLine::GetNextLine() - Processing line number: 1060
  3617. -* NOTICE *- 21:50:33.757 - 33359256 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 28 on
  3618. -* NOTICE *- 21:50:33.757 - 33359278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1060, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3619. -* NOTICE *- 21:50:33.757 - 33359322 - FormatCmdLine::GetNextLine() - Processing line number: 1061
  3620. -* NOTICE *- 21:50:33.757 - 33359342 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 29 on
  3621. -* NOTICE *- 21:50:33.757 - 33359364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1061, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3622. -* NOTICE *- 21:50:33.757 - 33359410 - FormatCmdLine::GetNextLine() - Processing line number: 1062
  3623. -* NOTICE *- 21:50:33.757 - 33359428 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 30 on
  3624. -* NOTICE *- 21:50:33.757 - 33359450 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1062, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3625. -* NOTICE *- 21:50:33.757 - 33359496 - FormatCmdLine::GetNextLine() - Processing line number: 1063
  3626. -* NOTICE *- 21:50:33.757 - 33359514 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT4" 31 on
  3627. -* NOTICE *- 21:50:33.757 - 33359536 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1063, Command Line: -SetClusterDisplay "Spike Window 1" "TT4" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3628. -* NOTICE *- 21:50:33.757 - 33359580 - FormatCmdLine::GetNextLine() - Processing line number: 1064
  3629. -* NOTICE *- 21:50:33.757 - 33359600 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 0 0 1
  3630. -* NOTICE *- 21:50:33.757 - 33359624 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1064, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3631. -* NOTICE *- 21:50:33.799 - 33401856 - FormatCmdLine::GetNextLine() - Processing line number: 1065
  3632. -* NOTICE *- 21:50:33.799 - 33401892 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 0 -3000 32767 32767 -3000
  3633. -* NOTICE *- 21:50:33.799 - 33401916 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1065, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3634. -* NOTICE *- 21:50:33.814 - 33416792 - FormatCmdLine::GetNextLine() - Processing line number: 1066
  3635. -* NOTICE *- 21:50:33.814 - 33416834 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 1 0 2
  3636. -* NOTICE *- 21:50:33.814 - 33416856 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1066, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3637. -* NOTICE *- 21:50:33.869 - 33471552 - FormatCmdLine::GetNextLine() - Processing line number: 1067
  3638. -* NOTICE *- 21:50:33.869 - 33471582 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 1 -3000 32767 32767 -3000
  3639. -* NOTICE *- 21:50:33.869 - 33471606 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1067, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3640. -* NOTICE *- 21:50:33.869 - 33471668 - FormatCmdLine::GetNextLine() - Processing line number: 1068
  3641. -* NOTICE *- 21:50:33.869 - 33471690 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 2 0 3
  3642. -* NOTICE *- 21:50:33.869 - 33471712 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1068, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3643. -* NOTICE *- 21:50:33.869 - 33471784 - FormatCmdLine::GetNextLine() - Processing line number: 1069
  3644. -* NOTICE *- 21:50:33.869 - 33471808 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 2 -3000 32767 32767 -3000
  3645. -* NOTICE *- 21:50:33.869 - 33471830 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1069, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3646. -* NOTICE *- 21:50:33.869 - 33471890 - FormatCmdLine::GetNextLine() - Processing line number: 1070
  3647. -* NOTICE *- 21:50:33.869 - 33471910 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 3 1 2
  3648. -* NOTICE *- 21:50:33.869 - 33471932 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1070, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3649. -* NOTICE *- 21:50:33.870 - 33472012 - FormatCmdLine::GetNextLine() - Processing line number: 1071
  3650. -* NOTICE *- 21:50:33.870 - 33472036 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 3 -3000 32767 32767 -3000
  3651. -* NOTICE *- 21:50:33.870 - 33472058 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1071, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3652. -* NOTICE *- 21:50:33.870 - 33472118 - FormatCmdLine::GetNextLine() - Processing line number: 1072
  3653. -* NOTICE *- 21:50:33.870 - 33472138 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 4 1 3
  3654. -* NOTICE *- 21:50:33.870 - 33472162 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1072, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3655. -* NOTICE *- 21:50:33.870 - 33472230 - FormatCmdLine::GetNextLine() - Processing line number: 1073
  3656. -* NOTICE *- 21:50:33.870 - 33472254 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 4 -3000 32767 32767 -3000
  3657. -* NOTICE *- 21:50:33.870 - 33472278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1073, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3658. -* NOTICE *- 21:50:33.870 - 33472338 - FormatCmdLine::GetNextLine() - Processing line number: 1074
  3659. -* NOTICE *- 21:50:33.870 - 33472358 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT4" 5 2 3
  3660. -* NOTICE *- 21:50:33.870 - 33472386 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1074, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT4" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3661. -* NOTICE *- 21:50:33.870 - 33472458 - FormatCmdLine::GetNextLine() - Processing line number: 1075
  3662. -* NOTICE *- 21:50:33.870 - 33472482 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT4" 5 -3000 32767 32767 -3000
  3663. -* NOTICE *- 21:50:33.870 - 33472506 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1075, Command Line: -SetFeaturePlotView "Spike Window 1" "TT4" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3664. -* NOTICE *- 21:50:33.870 - 33472566 - FormatCmdLine::GetNextLine() - Processing line number: 1076
  3665. -* NOTICE *- 21:50:33.870 - 33472586 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT5"
  3666. -* NOTICE *- 21:50:33.870 - 33472608 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1076, Command Line: -AddPlot "Spike Window 1" "TT5", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3667. -* NOTICE *- 21:50:33.879 - 33481444 - FormatCmdLine::GetNextLine() - Processing line number: 1077
  3668. -* NOTICE *- 21:50:33.879 - 33481474 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT5" "True"
  3669. -* NOTICE *- 21:50:33.879 - 33481500 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1077, Command Line: -SetPlotEnabled "Spike Window 1" "TT5" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3670. -* NOTICE *- 21:50:33.879 - 33481548 - FormatCmdLine::GetNextLine() - Processing line number: 1078
  3671. -* NOTICE *- 21:50:33.879 - 33481568 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 0 on
  3672. -* NOTICE *- 21:50:33.879 - 33481590 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1078, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3673. -* NOTICE *- 21:50:33.879 - 33481636 - FormatCmdLine::GetNextLine() - Processing line number: 1079
  3674. -* NOTICE *- 21:50:33.879 - 33481656 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 1 on
  3675. -* NOTICE *- 21:50:33.879 - 33481678 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1079, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3676. -* NOTICE *- 21:50:33.879 - 33481722 - FormatCmdLine::GetNextLine() - Processing line number: 1080
  3677. -* NOTICE *- 21:50:33.879 - 33481742 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 2 on
  3678. -* NOTICE *- 21:50:33.879 - 33481764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1080, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3679. -* NOTICE *- 21:50:33.879 - 33481808 - FormatCmdLine::GetNextLine() - Processing line number: 1081
  3680. -* NOTICE *- 21:50:33.879 - 33481828 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 3 on
  3681. -* NOTICE *- 21:50:33.879 - 33481850 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1081, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3682. -* NOTICE *- 21:50:33.879 - 33481894 - FormatCmdLine::GetNextLine() - Processing line number: 1082
  3683. -* NOTICE *- 21:50:33.879 - 33481914 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 4 on
  3684. -* NOTICE *- 21:50:33.880 - 33481946 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1082, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3685. -* NOTICE *- 21:50:33.880 - 33481996 - FormatCmdLine::GetNextLine() - Processing line number: 1083
  3686. -* NOTICE *- 21:50:33.880 - 33482018 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 5 on
  3687. -* NOTICE *- 21:50:33.880 - 33482040 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1083, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3688. -* NOTICE *- 21:50:33.880 - 33482084 - FormatCmdLine::GetNextLine() - Processing line number: 1084
  3689. -* NOTICE *- 21:50:33.880 - 33482104 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 6 on
  3690. -* NOTICE *- 21:50:33.880 - 33482126 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1084, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3691. -* NOTICE *- 21:50:33.880 - 33482170 - FormatCmdLine::GetNextLine() - Processing line number: 1085
  3692. -* NOTICE *- 21:50:33.880 - 33482190 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 7 on
  3693. -* NOTICE *- 21:50:33.880 - 33482212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1085, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3694. -* NOTICE *- 21:50:33.880 - 33482256 - FormatCmdLine::GetNextLine() - Processing line number: 1086
  3695. -* NOTICE *- 21:50:33.880 - 33482276 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 8 on
  3696. -* NOTICE *- 21:50:33.880 - 33482298 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1086, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3697. -* NOTICE *- 21:50:33.880 - 33482342 - FormatCmdLine::GetNextLine() - Processing line number: 1087
  3698. -* NOTICE *- 21:50:33.880 - 33482362 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 9 on
  3699. -* NOTICE *- 21:50:33.880 - 33482384 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1087, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3700. -* NOTICE *- 21:50:33.880 - 33482428 - FormatCmdLine::GetNextLine() - Processing line number: 1088
  3701. -* NOTICE *- 21:50:33.880 - 33482446 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 10 on
  3702. -* NOTICE *- 21:50:33.880 - 33482470 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1088, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3703. -* NOTICE *- 21:50:33.880 - 33482514 - FormatCmdLine::GetNextLine() - Processing line number: 1089
  3704. -* NOTICE *- 21:50:33.880 - 33482534 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 11 on
  3705. -* NOTICE *- 21:50:33.880 - 33482558 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1089, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3706. -* NOTICE *- 21:50:33.880 - 33482620 - FormatCmdLine::GetNextLine() - Processing line number: 1090
  3707. -* NOTICE *- 21:50:33.880 - 33482640 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 12 on
  3708. -* NOTICE *- 21:50:33.880 - 33482668 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1090, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3709. -* NOTICE *- 21:50:33.880 - 33482714 - FormatCmdLine::GetNextLine() - Processing line number: 1091
  3710. -* NOTICE *- 21:50:33.880 - 33482734 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 13 on
  3711. -* NOTICE *- 21:50:33.880 - 33482756 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1091, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3712. -* NOTICE *- 21:50:33.880 - 33482800 - FormatCmdLine::GetNextLine() - Processing line number: 1092
  3713. -* NOTICE *- 21:50:33.880 - 33482820 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 14 on
  3714. -* NOTICE *- 21:50:33.880 - 33482842 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1092, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3715. -* NOTICE *- 21:50:33.880 - 33482886 - FormatCmdLine::GetNextLine() - Processing line number: 1093
  3716. -* NOTICE *- 21:50:33.880 - 33482906 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 15 on
  3717. -* NOTICE *- 21:50:33.880 - 33482928 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1093, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3718. -* NOTICE *- 21:50:33.881 - 33482976 - FormatCmdLine::GetNextLine() - Processing line number: 1094
  3719. -* NOTICE *- 21:50:33.881 - 33482996 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 16 on
  3720. -* NOTICE *- 21:50:33.881 - 33483020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1094, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3721. -* NOTICE *- 21:50:33.881 - 33483064 - FormatCmdLine::GetNextLine() - Processing line number: 1095
  3722. -* NOTICE *- 21:50:33.881 - 33483084 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 17 on
  3723. -* NOTICE *- 21:50:33.881 - 33483106 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1095, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3724. -* NOTICE *- 21:50:33.881 - 33483150 - FormatCmdLine::GetNextLine() - Processing line number: 1096
  3725. -* NOTICE *- 21:50:33.881 - 33483170 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 18 on
  3726. -* NOTICE *- 21:50:33.881 - 33483192 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1096, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3727. -* NOTICE *- 21:50:33.881 - 33483236 - FormatCmdLine::GetNextLine() - Processing line number: 1097
  3728. -* NOTICE *- 21:50:33.881 - 33483256 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 19 on
  3729. -* NOTICE *- 21:50:33.881 - 33483278 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1097, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3730. -* NOTICE *- 21:50:33.881 - 33483322 - FormatCmdLine::GetNextLine() - Processing line number: 1098
  3731. -* NOTICE *- 21:50:33.881 - 33483346 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 20 on
  3732. -* NOTICE *- 21:50:33.881 - 33483370 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1098, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3733. -* NOTICE *- 21:50:33.881 - 33483414 - FormatCmdLine::GetNextLine() - Processing line number: 1099
  3734. -* NOTICE *- 21:50:33.881 - 33483434 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 21 on
  3735. -* NOTICE *- 21:50:33.881 - 33483458 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1099, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3736. -* NOTICE *- 21:50:33.881 - 33483502 - FormatCmdLine::GetNextLine() - Processing line number: 1100
  3737. -* NOTICE *- 21:50:33.881 - 33483520 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 22 on
  3738. -* NOTICE *- 21:50:33.881 - 33483542 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1100, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3739. -* NOTICE *- 21:50:33.881 - 33483586 - FormatCmdLine::GetNextLine() - Processing line number: 1101
  3740. -* NOTICE *- 21:50:33.881 - 33483606 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 23 on
  3741. -* NOTICE *- 21:50:33.881 - 33483628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1101, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3742. -* NOTICE *- 21:50:33.881 - 33483672 - FormatCmdLine::GetNextLine() - Processing line number: 1102
  3743. -* NOTICE *- 21:50:33.881 - 33483692 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 24 on
  3744. -* NOTICE *- 21:50:33.881 - 33483714 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1102, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3745. -* NOTICE *- 21:50:33.881 - 33483758 - FormatCmdLine::GetNextLine() - Processing line number: 1103
  3746. -* NOTICE *- 21:50:33.881 - 33483778 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 25 on
  3747. -* NOTICE *- 21:50:33.881 - 33483800 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1103, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3748. -* NOTICE *- 21:50:33.881 - 33483844 - FormatCmdLine::GetNextLine() - Processing line number: 1104
  3749. -* NOTICE *- 21:50:33.881 - 33483864 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 26 on
  3750. -* NOTICE *- 21:50:33.881 - 33483886 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1104, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3751. -* NOTICE *- 21:50:33.881 - 33483930 - FormatCmdLine::GetNextLine() - Processing line number: 1105
  3752. -* NOTICE *- 21:50:33.882 - 33483954 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 27 on
  3753. -* NOTICE *- 21:50:33.882 - 33483976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1105, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3754. -* NOTICE *- 21:50:33.882 - 33484022 - FormatCmdLine::GetNextLine() - Processing line number: 1106
  3755. -* NOTICE *- 21:50:33.882 - 33484044 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 28 on
  3756. -* NOTICE *- 21:50:33.882 - 33484068 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1106, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3757. -* NOTICE *- 21:50:33.882 - 33484114 - FormatCmdLine::GetNextLine() - Processing line number: 1107
  3758. -* NOTICE *- 21:50:33.882 - 33484134 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 29 on
  3759. -* NOTICE *- 21:50:33.882 - 33484156 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1107, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3760. -* NOTICE *- 21:50:33.882 - 33484200 - FormatCmdLine::GetNextLine() - Processing line number: 1108
  3761. -* NOTICE *- 21:50:33.882 - 33484220 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 30 on
  3762. -* NOTICE *- 21:50:33.882 - 33484242 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1108, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3763. -* NOTICE *- 21:50:33.882 - 33484286 - FormatCmdLine::GetNextLine() - Processing line number: 1109
  3764. -* NOTICE *- 21:50:33.882 - 33484306 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT5" 31 on
  3765. -* NOTICE *- 21:50:33.882 - 33484328 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1109, Command Line: -SetClusterDisplay "Spike Window 1" "TT5" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3766. -* NOTICE *- 21:50:33.882 - 33484372 - FormatCmdLine::GetNextLine() - Processing line number: 1110
  3767. -* NOTICE *- 21:50:33.882 - 33484392 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 0 0 1
  3768. -* NOTICE *- 21:50:33.882 - 33484414 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1110, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3769. -* NOTICE *- 21:50:33.882 - 33484476 - FormatCmdLine::GetNextLine() - Processing line number: 1111
  3770. -* NOTICE *- 21:50:33.882 - 33484498 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 0 -3000 32767 32767 -3000
  3771. -* NOTICE *- 21:50:33.882 - 33484520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1111, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3772. -* NOTICE *- 21:50:33.882 - 33484584 - FormatCmdLine::GetNextLine() - Processing line number: 1112
  3773. -* NOTICE *- 21:50:33.882 - 33484604 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 1 0 2
  3774. -* NOTICE *- 21:50:33.882 - 33484628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1112, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3775. -* NOTICE *- 21:50:33.882 - 33484686 - FormatCmdLine::GetNextLine() - Processing line number: 1113
  3776. -* NOTICE *- 21:50:33.882 - 33484708 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 1 -3000 32767 32767 -3000
  3777. -* NOTICE *- 21:50:33.882 - 33484732 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1113, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3778. -* NOTICE *- 21:50:33.882 - 33484796 - FormatCmdLine::GetNextLine() - Processing line number: 1114
  3779. -* NOTICE *- 21:50:33.882 - 33484818 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 2 0 3
  3780. -* NOTICE *- 21:50:33.882 - 33484842 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1114, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3781. -* NOTICE *- 21:50:33.882 - 33484900 - FormatCmdLine::GetNextLine() - Processing line number: 1115
  3782. -* NOTICE *- 21:50:33.882 - 33484922 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 2 -3000 32767 32767 -3000
  3783. -* NOTICE *- 21:50:33.883 - 33484948 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1115, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3784. -* NOTICE *- 21:50:33.883 - 33485010 - FormatCmdLine::GetNextLine() - Processing line number: 1116
  3785. -* NOTICE *- 21:50:33.883 - 33485030 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 3 1 2
  3786. -* NOTICE *- 21:50:33.883 - 33485052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1116, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3787. -* NOTICE *- 21:50:33.883 - 33485112 - FormatCmdLine::GetNextLine() - Processing line number: 1117
  3788. -* NOTICE *- 21:50:33.883 - 33485134 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 3 -3000 32767 32767 -3000
  3789. -* NOTICE *- 21:50:33.883 - 33485156 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1117, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3790. -* NOTICE *- 21:50:33.883 - 33485216 - FormatCmdLine::GetNextLine() - Processing line number: 1118
  3791. -* NOTICE *- 21:50:33.883 - 33485236 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 4 1 3
  3792. -* NOTICE *- 21:50:33.883 - 33485258 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1118, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3793. -* NOTICE *- 21:50:33.883 - 33485318 - FormatCmdLine::GetNextLine() - Processing line number: 1119
  3794. -* NOTICE *- 21:50:33.883 - 33485340 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 4 -3000 32767 32767 -3000
  3795. -* NOTICE *- 21:50:33.883 - 33485362 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1119, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3796. -* NOTICE *- 21:50:33.883 - 33485422 - FormatCmdLine::GetNextLine() - Processing line number: 1120
  3797. -* NOTICE *- 21:50:33.883 - 33485442 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT5" 5 2 3
  3798. -* NOTICE *- 21:50:33.883 - 33485464 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1120, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT5" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3799. -* NOTICE *- 21:50:33.883 - 33485524 - FormatCmdLine::GetNextLine() - Processing line number: 1121
  3800. -* NOTICE *- 21:50:33.883 - 33485544 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT5" 5 -3000 32767 32767 -3000
  3801. -* NOTICE *- 21:50:33.883 - 33485568 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1121, Command Line: -SetFeaturePlotView "Spike Window 1" "TT5" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3802. -* NOTICE *- 21:50:33.883 - 33485708 - FormatCmdLine::GetNextLine() - Processing line number: 1122
  3803. -* NOTICE *- 21:50:33.883 - 33485732 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT6"
  3804. -* NOTICE *- 21:50:33.883 - 33485756 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1122, Command Line: -AddPlot "Spike Window 1" "TT6", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3805. -* NOTICE *- 21:50:33.893 - 33495450 - FormatCmdLine::GetNextLine() - Processing line number: 1123
  3806. -* NOTICE *- 21:50:33.893 - 33495480 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT6" "True"
  3807. -* NOTICE *- 21:50:33.893 - 33495506 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1123, Command Line: -SetPlotEnabled "Spike Window 1" "TT6" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3808. -* NOTICE *- 21:50:33.893 - 33495556 - FormatCmdLine::GetNextLine() - Processing line number: 1124
  3809. -* NOTICE *- 21:50:33.893 - 33495576 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 0 on
  3810. -* NOTICE *- 21:50:33.893 - 33495616 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1124, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3811. -* NOTICE *- 21:50:33.893 - 33495684 - FormatCmdLine::GetNextLine() - Processing line number: 1125
  3812. -* NOTICE *- 21:50:33.893 - 33495714 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 1 on
  3813. -* NOTICE *- 21:50:33.893 - 33495752 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1125, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3814. -* NOTICE *- 21:50:33.893 - 33495818 - FormatCmdLine::GetNextLine() - Processing line number: 1126
  3815. -* NOTICE *- 21:50:33.893 - 33495850 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 2 on
  3816. -* NOTICE *- 21:50:33.893 - 33495882 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1126, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3817. -* NOTICE *- 21:50:33.894 - 33495954 - FormatCmdLine::GetNextLine() - Processing line number: 1127
  3818. -* NOTICE *- 21:50:33.894 - 33495986 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 3 on
  3819. -* NOTICE *- 21:50:33.894 - 33496020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1127, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3820. -* NOTICE *- 21:50:33.894 - 33496088 - FormatCmdLine::GetNextLine() - Processing line number: 1128
  3821. -* NOTICE *- 21:50:33.894 - 33496120 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 4 on
  3822. -* NOTICE *- 21:50:33.894 - 33496154 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1128, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3823. -* NOTICE *- 21:50:33.894 - 33496218 - FormatCmdLine::GetNextLine() - Processing line number: 1129
  3824. -* NOTICE *- 21:50:33.894 - 33496250 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 5 on
  3825. -* NOTICE *- 21:50:33.894 - 33496288 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1129, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3826. -* NOTICE *- 21:50:33.894 - 33496362 - FormatCmdLine::GetNextLine() - Processing line number: 1130
  3827. -* NOTICE *- 21:50:33.894 - 33496398 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 6 on
  3828. -* NOTICE *- 21:50:33.894 - 33496430 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1130, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3829. -* NOTICE *- 21:50:33.894 - 33496496 - FormatCmdLine::GetNextLine() - Processing line number: 1131
  3830. -* NOTICE *- 21:50:33.894 - 33496522 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 7 on
  3831. -* NOTICE *- 21:50:33.894 - 33496546 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1131, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3832. -* NOTICE *- 21:50:33.894 - 33496592 - FormatCmdLine::GetNextLine() - Processing line number: 1132
  3833. -* NOTICE *- 21:50:33.894 - 33496612 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 8 on
  3834. -* NOTICE *- 21:50:33.894 - 33496634 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1132, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3835. -* NOTICE *- 21:50:33.894 - 33496678 - FormatCmdLine::GetNextLine() - Processing line number: 1133
  3836. -* NOTICE *- 21:50:33.894 - 33496698 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 9 on
  3837. -* NOTICE *- 21:50:33.894 - 33496722 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1133, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3838. -* NOTICE *- 21:50:33.894 - 33496766 - FormatCmdLine::GetNextLine() - Processing line number: 1134
  3839. -* NOTICE *- 21:50:33.894 - 33496786 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 10 on
  3840. -* NOTICE *- 21:50:33.894 - 33496808 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1134, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3841. -* NOTICE *- 21:50:33.894 - 33496854 - FormatCmdLine::GetNextLine() - Processing line number: 1135
  3842. -* NOTICE *- 21:50:33.894 - 33496874 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 11 on
  3843. -* NOTICE *- 21:50:33.894 - 33496896 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1135, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3844. -* NOTICE *- 21:50:33.895 - 33496942 - FormatCmdLine::GetNextLine() - Processing line number: 1136
  3845. -* NOTICE *- 21:50:33.895 - 33496964 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 12 on
  3846. -* NOTICE *- 21:50:33.895 - 33496986 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1136, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3847. -* NOTICE *- 21:50:33.895 - 33497030 - FormatCmdLine::GetNextLine() - Processing line number: 1137
  3848. -* NOTICE *- 21:50:33.895 - 33497050 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 13 on
  3849. -* NOTICE *- 21:50:33.895 - 33497074 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1137, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3850. -* NOTICE *- 21:50:33.895 - 33497124 - FormatCmdLine::GetNextLine() - Processing line number: 1138
  3851. -* NOTICE *- 21:50:33.895 - 33497146 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 14 on
  3852. -* NOTICE *- 21:50:33.895 - 33497168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1138, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3853. -* NOTICE *- 21:50:33.895 - 33497214 - FormatCmdLine::GetNextLine() - Processing line number: 1139
  3854. -* NOTICE *- 21:50:33.895 - 33497234 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 15 on
  3855. -* NOTICE *- 21:50:33.895 - 33497256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1139, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3856. -* NOTICE *- 21:50:33.895 - 33497302 - FormatCmdLine::GetNextLine() - Processing line number: 1140
  3857. -* NOTICE *- 21:50:33.895 - 33497320 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 16 on
  3858. -* NOTICE *- 21:50:33.895 - 33497344 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1140, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3859. -* NOTICE *- 21:50:33.895 - 33497388 - FormatCmdLine::GetNextLine() - Processing line number: 1141
  3860. -* NOTICE *- 21:50:33.895 - 33497408 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 17 on
  3861. -* NOTICE *- 21:50:33.895 - 33497430 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1141, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3862. -* NOTICE *- 21:50:33.895 - 33497476 - FormatCmdLine::GetNextLine() - Processing line number: 1142
  3863. -* NOTICE *- 21:50:33.895 - 33497496 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 18 on
  3864. -* NOTICE *- 21:50:33.895 - 33497518 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1142, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3865. -* NOTICE *- 21:50:33.895 - 33497562 - FormatCmdLine::GetNextLine() - Processing line number: 1143
  3866. -* NOTICE *- 21:50:33.895 - 33497582 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 19 on
  3867. -* NOTICE *- 21:50:33.895 - 33497604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1143, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3868. -* NOTICE *- 21:50:33.895 - 33497650 - FormatCmdLine::GetNextLine() - Processing line number: 1144
  3869. -* NOTICE *- 21:50:33.896 - 33498022 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 20 on
  3870. -* NOTICE *- 21:50:33.896 - 33498048 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1144, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3871. -* NOTICE *- 21:50:33.896 - 33498098 - FormatCmdLine::GetNextLine() - Processing line number: 1145
  3872. -* NOTICE *- 21:50:33.896 - 33498118 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 21 on
  3873. -* NOTICE *- 21:50:33.896 - 33498140 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1145, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3874. -* NOTICE *- 21:50:33.896 - 33498188 - FormatCmdLine::GetNextLine() - Processing line number: 1146
  3875. -* NOTICE *- 21:50:33.896 - 33498210 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 22 on
  3876. -* NOTICE *- 21:50:33.896 - 33498232 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1146, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3877. -* NOTICE *- 21:50:33.896 - 33498278 - FormatCmdLine::GetNextLine() - Processing line number: 1147
  3878. -* NOTICE *- 21:50:33.896 - 33498298 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 23 on
  3879. -* NOTICE *- 21:50:33.896 - 33498320 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1147, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3880. -* NOTICE *- 21:50:33.896 - 33498364 - FormatCmdLine::GetNextLine() - Processing line number: 1148
  3881. -* NOTICE *- 21:50:33.896 - 33498384 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 24 on
  3882. -* NOTICE *- 21:50:33.896 - 33498406 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1148, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3883. -* NOTICE *- 21:50:33.896 - 33498450 - FormatCmdLine::GetNextLine() - Processing line number: 1149
  3884. -* NOTICE *- 21:50:33.896 - 33498470 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 25 on
  3885. -* NOTICE *- 21:50:33.896 - 33498492 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1149, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3886. -* NOTICE *- 21:50:33.896 - 33498536 - FormatCmdLine::GetNextLine() - Processing line number: 1150
  3887. -* NOTICE *- 21:50:33.896 - 33498556 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 26 on
  3888. -* NOTICE *- 21:50:33.896 - 33498578 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1150, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3889. -* NOTICE *- 21:50:33.896 - 33498622 - FormatCmdLine::GetNextLine() - Processing line number: 1151
  3890. -* NOTICE *- 21:50:33.896 - 33498642 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 27 on
  3891. -* NOTICE *- 21:50:33.896 - 33498664 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1151, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3892. -* NOTICE *- 21:50:33.896 - 33498708 - FormatCmdLine::GetNextLine() - Processing line number: 1152
  3893. -* NOTICE *- 21:50:33.896 - 33498728 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 28 on
  3894. -* NOTICE *- 21:50:33.896 - 33498750 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1152, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3895. -* NOTICE *- 21:50:33.896 - 33498794 - FormatCmdLine::GetNextLine() - Processing line number: 1153
  3896. -* NOTICE *- 21:50:33.896 - 33498814 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 29 on
  3897. -* NOTICE *- 21:50:33.896 - 33498836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1153, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3898. -* NOTICE *- 21:50:33.897 - 33498944 - FormatCmdLine::GetNextLine() - Processing line number: 1154
  3899. -* NOTICE *- 21:50:33.897 - 33498970 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 30 on
  3900. -* NOTICE *- 21:50:33.897 - 33498992 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1154, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3901. -* NOTICE *- 21:50:33.912 - 33514140 - FormatCmdLine::GetNextLine() - Processing line number: 1155
  3902. -* NOTICE *- 21:50:33.912 - 33514180 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT6" 31 on
  3903. -* NOTICE *- 21:50:33.912 - 33514204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1155, Command Line: -SetClusterDisplay "Spike Window 1" "TT6" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3904. -* NOTICE *- 21:50:33.912 - 33514252 - FormatCmdLine::GetNextLine() - Processing line number: 1156
  3905. -* NOTICE *- 21:50:33.912 - 33514272 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 0 0 1
  3906. -* NOTICE *- 21:50:33.912 - 33514294 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1156, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3907. -* NOTICE *- 21:50:33.919 - 33521818 - FormatCmdLine::GetNextLine() - Processing line number: 1157
  3908. -* NOTICE *- 21:50:33.919 - 33521854 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 0 -3000 32767 32767 -3000
  3909. -* NOTICE *- 21:50:33.919 - 33521876 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1157, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3910. -* NOTICE *- 21:50:33.920 - 33521956 - FormatCmdLine::GetNextLine() - Processing line number: 1158
  3911. -* NOTICE *- 21:50:33.920 - 33521978 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 1 0 2
  3912. -* NOTICE *- 21:50:33.920 - 33522000 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1158, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3913. -* NOTICE *- 21:50:33.920 - 33522076 - FormatCmdLine::GetNextLine() - Processing line number: 1159
  3914. -* NOTICE *- 21:50:33.920 - 33522100 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 1 -3000 32767 32767 -3000
  3915. -* NOTICE *- 21:50:33.920 - 33522122 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1159, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3916. -* NOTICE *- 21:50:33.920 - 33522184 - FormatCmdLine::GetNextLine() - Processing line number: 1160
  3917. -* NOTICE *- 21:50:33.920 - 33522204 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 2 0 3
  3918. -* NOTICE *- 21:50:33.920 - 33522226 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1160, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3919. -* NOTICE *- 21:50:33.920 - 33522300 - FormatCmdLine::GetNextLine() - Processing line number: 1161
  3920. -* NOTICE *- 21:50:33.920 - 33522322 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 2 -3000 32767 32767 -3000
  3921. -* NOTICE *- 21:50:33.920 - 33522350 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1161, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3922. -* NOTICE *- 21:50:33.920 - 33522414 - FormatCmdLine::GetNextLine() - Processing line number: 1162
  3923. -* NOTICE *- 21:50:33.920 - 33522434 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 3 1 2
  3924. -* NOTICE *- 21:50:33.920 - 33522456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1162, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3925. -* NOTICE *- 21:50:33.920 - 33522530 - FormatCmdLine::GetNextLine() - Processing line number: 1163
  3926. -* NOTICE *- 21:50:33.920 - 33522554 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 3 -3000 32767 32767 -3000
  3927. -* NOTICE *- 21:50:33.920 - 33522576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1163, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3928. -* NOTICE *- 21:50:33.920 - 33522638 - FormatCmdLine::GetNextLine() - Processing line number: 1164
  3929. -* NOTICE *- 21:50:33.920 - 33522658 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 4 1 3
  3930. -* NOTICE *- 21:50:33.920 - 33522680 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1164, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3931. -* NOTICE *- 21:50:33.920 - 33522752 - FormatCmdLine::GetNextLine() - Processing line number: 1165
  3932. -* NOTICE *- 21:50:33.920 - 33522776 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 4 -3000 32767 32767 -3000
  3933. -* NOTICE *- 21:50:33.920 - 33522798 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1165, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3934. -* NOTICE *- 21:50:33.920 - 33522860 - FormatCmdLine::GetNextLine() - Processing line number: 1166
  3935. -* NOTICE *- 21:50:33.920 - 33522880 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT6" 5 2 3
  3936. -* NOTICE *- 21:50:33.920 - 33522902 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1166, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT6" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3937. -* NOTICE *- 21:50:33.921 - 33522978 - FormatCmdLine::GetNextLine() - Processing line number: 1167
  3938. -* NOTICE *- 21:50:33.921 - 33523002 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT6" 5 -3000 32767 32767 -3000
  3939. -* NOTICE *- 21:50:33.921 - 33523026 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1167, Command Line: -SetFeaturePlotView "Spike Window 1" "TT6" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3940. -* NOTICE *- 21:50:33.921 - 33523104 - FormatCmdLine::GetNextLine() - Processing line number: 1168
  3941. -* NOTICE *- 21:50:33.921 - 33523124 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT7"
  3942. -* NOTICE *- 21:50:33.921 - 33523146 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1168, Command Line: -AddPlot "Spike Window 1" "TT7", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3943. -* NOTICE *- 21:50:33.971 - 33573616 - FormatCmdLine::GetNextLine() - Processing line number: 1169
  3944. -* NOTICE *- 21:50:33.971 - 33573652 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT7" "True"
  3945. -* NOTICE *- 21:50:33.971 - 33573680 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1169, Command Line: -SetPlotEnabled "Spike Window 1" "TT7" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3946. -* NOTICE *- 21:50:33.971 - 33573728 - FormatCmdLine::GetNextLine() - Processing line number: 1170
  3947. -* NOTICE *- 21:50:33.971 - 33573748 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 0 on
  3948. -* NOTICE *- 21:50:33.971 - 33573772 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1170, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3949. -* NOTICE *- 21:50:33.971 - 33573820 - FormatCmdLine::GetNextLine() - Processing line number: 1171
  3950. -* NOTICE *- 21:50:33.971 - 33573840 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 1 on
  3951. -* NOTICE *- 21:50:33.971 - 33573860 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1171, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3952. -* NOTICE *- 21:50:33.971 - 33573904 - FormatCmdLine::GetNextLine() - Processing line number: 1172
  3953. -* NOTICE *- 21:50:33.971 - 33573924 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 2 on
  3954. -* NOTICE *- 21:50:33.972 - 33573952 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1172, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3955. -* NOTICE *- 21:50:33.972 - 33574000 - FormatCmdLine::GetNextLine() - Processing line number: 1173
  3956. -* NOTICE *- 21:50:33.972 - 33574020 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 3 on
  3957. -* NOTICE *- 21:50:33.972 - 33574044 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1173, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3958. -* NOTICE *- 21:50:33.972 - 33574088 - FormatCmdLine::GetNextLine() - Processing line number: 1174
  3959. -* NOTICE *- 21:50:33.972 - 33574108 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 4 on
  3960. -* NOTICE *- 21:50:33.972 - 33574132 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1174, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3961. -* NOTICE *- 21:50:33.972 - 33574176 - FormatCmdLine::GetNextLine() - Processing line number: 1175
  3962. -* NOTICE *- 21:50:33.972 - 33574196 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 5 on
  3963. -* NOTICE *- 21:50:33.972 - 33574216 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1175, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3964. -* NOTICE *- 21:50:33.972 - 33574260 - FormatCmdLine::GetNextLine() - Processing line number: 1176
  3965. -* NOTICE *- 21:50:33.972 - 33574280 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 6 on
  3966. -* NOTICE *- 21:50:33.972 - 33574304 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1176, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3967. -* NOTICE *- 21:50:33.972 - 33574348 - FormatCmdLine::GetNextLine() - Processing line number: 1177
  3968. -* NOTICE *- 21:50:33.972 - 33574372 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 7 on
  3969. -* NOTICE *- 21:50:33.972 - 33574396 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1177, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3970. -* NOTICE *- 21:50:33.972 - 33574440 - FormatCmdLine::GetNextLine() - Processing line number: 1178
  3971. -* NOTICE *- 21:50:33.972 - 33574460 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 8 on
  3972. -* NOTICE *- 21:50:33.972 - 33574484 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1178, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3973. -* NOTICE *- 21:50:33.972 - 33574528 - FormatCmdLine::GetNextLine() - Processing line number: 1179
  3974. -* NOTICE *- 21:50:33.972 - 33574548 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 9 on
  3975. -* NOTICE *- 21:50:33.972 - 33574572 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1179, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3976. -* NOTICE *- 21:50:33.972 - 33574616 - FormatCmdLine::GetNextLine() - Processing line number: 1180
  3977. -* NOTICE *- 21:50:33.972 - 33574636 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 10 on
  3978. -* NOTICE *- 21:50:33.972 - 33574656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1180, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3979. -* NOTICE *- 21:50:33.972 - 33574700 - FormatCmdLine::GetNextLine() - Processing line number: 1181
  3980. -* NOTICE *- 21:50:33.972 - 33574720 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 11 on
  3981. -* NOTICE *- 21:50:33.972 - 33574744 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1181, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3982. -* NOTICE *- 21:50:33.972 - 33574788 - FormatCmdLine::GetNextLine() - Processing line number: 1182
  3983. -* NOTICE *- 21:50:33.972 - 33574808 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 12 on
  3984. -* NOTICE *- 21:50:33.972 - 33574828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1182, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3985. -* NOTICE *- 21:50:33.972 - 33574876 - FormatCmdLine::GetNextLine() - Processing line number: 1183
  3986. -* NOTICE *- 21:50:33.972 - 33574896 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 13 on
  3987. -* NOTICE *- 21:50:33.972 - 33574916 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1183, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3988. -* NOTICE *- 21:50:33.973 - 33574976 - FormatCmdLine::GetNextLine() - Processing line number: 1184
  3989. -* NOTICE *- 21:50:33.973 - 33575000 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 14 on
  3990. -* NOTICE *- 21:50:33.973 - 33575020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1184, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3991. -* NOTICE *- 21:50:33.973 - 33575068 - FormatCmdLine::GetNextLine() - Processing line number: 1185
  3992. -* NOTICE *- 21:50:33.973 - 33575092 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 15 on
  3993. -* NOTICE *- 21:50:33.973 - 33575116 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1185, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3994. -* NOTICE *- 21:50:33.973 - 33575160 - FormatCmdLine::GetNextLine() - Processing line number: 1186
  3995. -* NOTICE *- 21:50:33.973 - 33575180 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 16 on
  3996. -* NOTICE *- 21:50:33.973 - 33575204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1186, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  3997. -* NOTICE *- 21:50:33.973 - 33575248 - FormatCmdLine::GetNextLine() - Processing line number: 1187
  3998. -* NOTICE *- 21:50:33.973 - 33575268 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 17 on
  3999. -* NOTICE *- 21:50:33.973 - 33575292 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1187, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4000. -* NOTICE *- 21:50:33.973 - 33575336 - FormatCmdLine::GetNextLine() - Processing line number: 1188
  4001. -* NOTICE *- 21:50:33.973 - 33575356 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 18 on
  4002. -* NOTICE *- 21:50:33.973 - 33575376 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1188, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4003. -* NOTICE *- 21:50:33.973 - 33575420 - FormatCmdLine::GetNextLine() - Processing line number: 1189
  4004. -* NOTICE *- 21:50:33.973 - 33575440 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 19 on
  4005. -* NOTICE *- 21:50:33.973 - 33575464 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1189, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4006. -* NOTICE *- 21:50:33.973 - 33575508 - FormatCmdLine::GetNextLine() - Processing line number: 1190
  4007. -* NOTICE *- 21:50:33.973 - 33575528 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 20 on
  4008. -* NOTICE *- 21:50:33.973 - 33575548 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1190, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4009. -* NOTICE *- 21:50:33.973 - 33575592 - FormatCmdLine::GetNextLine() - Processing line number: 1191
  4010. -* NOTICE *- 21:50:33.973 - 33575612 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 21 on
  4011. -* NOTICE *- 21:50:33.973 - 33575636 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1191, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4012. -* NOTICE *- 21:50:33.973 - 33575680 - FormatCmdLine::GetNextLine() - Processing line number: 1192
  4013. -* NOTICE *- 21:50:33.973 - 33575700 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 22 on
  4014. -* NOTICE *- 21:50:33.973 - 33575724 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1192, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4015. -* NOTICE *- 21:50:33.973 - 33575768 - FormatCmdLine::GetNextLine() - Processing line number: 1193
  4016. -* NOTICE *- 21:50:33.973 - 33575792 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 23 on
  4017. -* NOTICE *- 21:50:33.973 - 33575816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1193, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4018. -* NOTICE *- 21:50:33.973 - 33575860 - FormatCmdLine::GetNextLine() - Processing line number: 1194
  4019. -* NOTICE *- 21:50:33.973 - 33575880 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 24 on
  4020. -* NOTICE *- 21:50:33.973 - 33575904 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1194, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4021. -* NOTICE *- 21:50:33.974 - 33575952 - FormatCmdLine::GetNextLine() - Processing line number: 1195
  4022. -* NOTICE *- 21:50:33.974 - 33575972 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 25 on
  4023. -* NOTICE *- 21:50:33.974 - 33575996 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1195, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4024. -* NOTICE *- 21:50:33.974 - 33576040 - FormatCmdLine::GetNextLine() - Processing line number: 1196
  4025. -* NOTICE *- 21:50:33.974 - 33576060 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 26 on
  4026. -* NOTICE *- 21:50:33.974 - 33576084 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1196, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4027. -* NOTICE *- 21:50:33.974 - 33576128 - FormatCmdLine::GetNextLine() - Processing line number: 1197
  4028. -* NOTICE *- 21:50:33.974 - 33576148 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 27 on
  4029. -* NOTICE *- 21:50:33.974 - 33576168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1197, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4030. -* NOTICE *- 21:50:33.974 - 33576212 - FormatCmdLine::GetNextLine() - Processing line number: 1198
  4031. -* NOTICE *- 21:50:33.974 - 33576232 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 28 on
  4032. -* NOTICE *- 21:50:33.974 - 33576256 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1198, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4033. -* NOTICE *- 21:50:33.974 - 33576300 - FormatCmdLine::GetNextLine() - Processing line number: 1199
  4034. -* NOTICE *- 21:50:33.974 - 33576320 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 29 on
  4035. -* NOTICE *- 21:50:33.974 - 33576344 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1199, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4036. -* NOTICE *- 21:50:33.974 - 33576388 - FormatCmdLine::GetNextLine() - Processing line number: 1200
  4037. -* NOTICE *- 21:50:33.974 - 33576408 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 30 on
  4038. -* NOTICE *- 21:50:33.974 - 33576428 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1200, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4039. -* NOTICE *- 21:50:33.974 - 33576472 - FormatCmdLine::GetNextLine() - Processing line number: 1201
  4040. -* NOTICE *- 21:50:33.974 - 33576496 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT7" 31 on
  4041. -* NOTICE *- 21:50:33.974 - 33576520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1201, Command Line: -SetClusterDisplay "Spike Window 1" "TT7" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4042. -* NOTICE *- 21:50:33.974 - 33576580 - FormatCmdLine::GetNextLine() - Processing line number: 1202
  4043. -* NOTICE *- 21:50:33.974 - 33576604 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 0 0 1
  4044. -* NOTICE *- 21:50:33.974 - 33576624 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1202, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4045. -* NOTICE *- 21:50:33.976 - 33578788 - FormatCmdLine::GetNextLine() - Processing line number: 1203
  4046. -* NOTICE *- 21:50:33.976 - 33578812 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 0 -3000 32767 32767 -3000
  4047. -* NOTICE *- 21:50:33.976 - 33578836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1203, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4048. -* NOTICE *- 21:50:33.980 - 33582900 - FormatCmdLine::GetNextLine() - Processing line number: 1204
  4049. -* NOTICE *- 21:50:33.981 - 33582948 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 1 0 2
  4050. -* NOTICE *- 21:50:33.981 - 33582976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1204, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4051. -* NOTICE *- 21:50:33.988 - 33590896 - FormatCmdLine::GetNextLine() - Processing line number: 1205
  4052. -* NOTICE *- 21:50:33.988 - 33590924 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 1 -3000 32767 32767 -3000
  4053. -* NOTICE *- 21:50:33.989 - 33590952 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1205, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4054. -* NOTICE *- 21:50:33.989 - 33591016 - FormatCmdLine::GetNextLine() - Processing line number: 1206
  4055. -* NOTICE *- 21:50:33.989 - 33591036 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 2 0 3
  4056. -* NOTICE *- 21:50:33.989 - 33591060 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1206, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4057. -* NOTICE *- 21:50:33.989 - 33591120 - FormatCmdLine::GetNextLine() - Processing line number: 1207
  4058. -* NOTICE *- 21:50:33.989 - 33591144 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 2 -3000 32767 32767 -3000
  4059. -* NOTICE *- 21:50:33.989 - 33591168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1207, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4060. -* NOTICE *- 21:50:33.989 - 33591228 - FormatCmdLine::GetNextLine() - Processing line number: 1208
  4061. -* NOTICE *- 21:50:33.989 - 33591248 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 3 1 2
  4062. -* NOTICE *- 21:50:33.989 - 33591272 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1208, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4063. -* NOTICE *- 21:50:33.989 - 33591340 - FormatCmdLine::GetNextLine() - Processing line number: 1209
  4064. -* NOTICE *- 21:50:33.989 - 33591364 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 3 -3000 32767 32767 -3000
  4065. -* NOTICE *- 21:50:33.989 - 33591388 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1209, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4066. -* NOTICE *- 21:50:33.989 - 33591448 - FormatCmdLine::GetNextLine() - Processing line number: 1210
  4067. -* NOTICE *- 21:50:33.989 - 33591468 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 4 1 3
  4068. -* NOTICE *- 21:50:33.989 - 33591492 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1210, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4069. -* NOTICE *- 21:50:33.989 - 33591552 - FormatCmdLine::GetNextLine() - Processing line number: 1211
  4070. -* NOTICE *- 21:50:33.989 - 33591572 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 4 -3000 32767 32767 -3000
  4071. -* NOTICE *- 21:50:33.989 - 33591596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1211, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4072. -* NOTICE *- 21:50:33.989 - 33591656 - FormatCmdLine::GetNextLine() - Processing line number: 1212
  4073. -* NOTICE *- 21:50:33.989 - 33591676 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT7" 5 2 3
  4074. -* NOTICE *- 21:50:33.989 - 33591700 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1212, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT7" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4075. -* NOTICE *- 21:50:33.989 - 33591760 - FormatCmdLine::GetNextLine() - Processing line number: 1213
  4076. -* NOTICE *- 21:50:33.989 - 33591780 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT7" 5 -3000 32767 32767 -3000
  4077. -* NOTICE *- 21:50:33.989 - 33591804 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1213, Command Line: -SetFeaturePlotView "Spike Window 1" "TT7" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4078. -* NOTICE *- 21:50:33.989 - 33591864 - FormatCmdLine::GetNextLine() - Processing line number: 1214
  4079. -* NOTICE *- 21:50:33.989 - 33591884 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT8"
  4080. -* NOTICE *- 21:50:33.989 - 33591908 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1214, Command Line: -AddPlot "Spike Window 1" "TT8", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4081. -* NOTICE *- 21:50:34.032 - 33634212 - FormatCmdLine::GetNextLine() - Processing line number: 1215
  4082. -* NOTICE *- 21:50:34.032 - 33634244 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT8" "True"
  4083. -* NOTICE *- 21:50:34.032 - 33634268 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1215, Command Line: -SetPlotEnabled "Spike Window 1" "TT8" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4084. -* NOTICE *- 21:50:34.032 - 33634320 - FormatCmdLine::GetNextLine() - Processing line number: 1216
  4085. -* NOTICE *- 21:50:34.032 - 33634340 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 0 on
  4086. -* NOTICE *- 21:50:34.032 - 33634364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1216, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4087. -* NOTICE *- 21:50:34.032 - 33634424 - FormatCmdLine::GetNextLine() - Processing line number: 1217
  4088. -* NOTICE *- 21:50:34.032 - 33634448 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 1 on
  4089. -* NOTICE *- 21:50:34.032 - 33634472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1217, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4090. -* NOTICE *- 21:50:34.032 - 33634516 - FormatCmdLine::GetNextLine() - Processing line number: 1218
  4091. -* NOTICE *- 21:50:34.032 - 33634536 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 2 on
  4092. -* NOTICE *- 21:50:34.032 - 33634560 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1218, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4093. -* NOTICE *- 21:50:34.032 - 33634616 - FormatCmdLine::GetNextLine() - Processing line number: 1219
  4094. -* NOTICE *- 21:50:34.032 - 33634648 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 3 on
  4095. -* NOTICE *- 21:50:34.032 - 33634684 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1219, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4096. -* NOTICE *- 21:50:34.032 - 33634752 - FormatCmdLine::GetNextLine() - Processing line number: 1220
  4097. -* NOTICE *- 21:50:34.032 - 33634780 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 4 on
  4098. -* NOTICE *- 21:50:34.032 - 33634816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1220, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4099. -* NOTICE *- 21:50:34.032 - 33634880 - FormatCmdLine::GetNextLine() - Processing line number: 1221
  4100. -* NOTICE *- 21:50:34.032 - 33634904 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 5 on
  4101. -* NOTICE *- 21:50:34.032 - 33634924 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1221, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4102. -* NOTICE *- 21:50:34.033 - 33634972 - FormatCmdLine::GetNextLine() - Processing line number: 1222
  4103. -* NOTICE *- 21:50:34.033 - 33634996 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 6 on
  4104. -* NOTICE *- 21:50:34.033 - 33635016 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1222, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4105. -* NOTICE *- 21:50:34.033 - 33635060 - FormatCmdLine::GetNextLine() - Processing line number: 1223
  4106. -* NOTICE *- 21:50:34.033 - 33635084 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 7 on
  4107. -* NOTICE *- 21:50:34.033 - 33635104 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1223, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4108. -* NOTICE *- 21:50:34.033 - 33635148 - FormatCmdLine::GetNextLine() - Processing line number: 1224
  4109. -* NOTICE *- 21:50:34.033 - 33635168 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 8 on
  4110. -* NOTICE *- 21:50:34.033 - 33635192 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1224, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4111. -* NOTICE *- 21:50:34.033 - 33635244 - FormatCmdLine::GetNextLine() - Processing line number: 1225
  4112. -* NOTICE *- 21:50:34.033 - 33635264 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 9 on
  4113. -* NOTICE *- 21:50:34.033 - 33635288 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1225, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4114. -* NOTICE *- 21:50:34.033 - 33635332 - FormatCmdLine::GetNextLine() - Processing line number: 1226
  4115. -* NOTICE *- 21:50:34.033 - 33635352 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 10 on
  4116. -* NOTICE *- 21:50:34.033 - 33635376 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1226, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4117. -* NOTICE *- 21:50:34.033 - 33635420 - FormatCmdLine::GetNextLine() - Processing line number: 1227
  4118. -* NOTICE *- 21:50:34.033 - 33635440 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 11 on
  4119. -* NOTICE *- 21:50:34.033 - 33635464 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1227, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4120. -* NOTICE *- 21:50:34.033 - 33635508 - FormatCmdLine::GetNextLine() - Processing line number: 1228
  4121. -* NOTICE *- 21:50:34.033 - 33635528 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 12 on
  4122. -* NOTICE *- 21:50:34.033 - 33635552 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1228, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4123. -* NOTICE *- 21:50:34.033 - 33635596 - FormatCmdLine::GetNextLine() - Processing line number: 1229
  4124. -* NOTICE *- 21:50:34.034 - 33636012 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 13 on
  4125. -* NOTICE *- 21:50:34.034 - 33636040 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1229, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4126. -* NOTICE *- 21:50:34.034 - 33636088 - FormatCmdLine::GetNextLine() - Processing line number: 1230
  4127. -* NOTICE *- 21:50:34.034 - 33636108 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 14 on
  4128. -* NOTICE *- 21:50:34.034 - 33636128 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1230, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4129. -* NOTICE *- 21:50:34.034 - 33636176 - FormatCmdLine::GetNextLine() - Processing line number: 1231
  4130. -* NOTICE *- 21:50:34.034 - 33636196 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 15 on
  4131. -* NOTICE *- 21:50:34.034 - 33636216 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1231, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4132. -* NOTICE *- 21:50:34.034 - 33636264 - FormatCmdLine::GetNextLine() - Processing line number: 1232
  4133. -* NOTICE *- 21:50:34.034 - 33636280 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 16 on
  4134. -* NOTICE *- 21:50:34.034 - 33636304 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1232, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4135. -* NOTICE *- 21:50:34.034 - 33636352 - FormatCmdLine::GetNextLine() - Processing line number: 1233
  4136. -* NOTICE *- 21:50:34.034 - 33636376 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 17 on
  4137. -* NOTICE *- 21:50:34.034 - 33636396 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1233, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4138. -* NOTICE *- 21:50:34.034 - 33636444 - FormatCmdLine::GetNextLine() - Processing line number: 1234
  4139. -* NOTICE *- 21:50:34.034 - 33636464 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 18 on
  4140. -* NOTICE *- 21:50:34.034 - 33636484 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1234, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4141. -* NOTICE *- 21:50:34.034 - 33636528 - FormatCmdLine::GetNextLine() - Processing line number: 1235
  4142. -* NOTICE *- 21:50:34.034 - 33636548 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 19 on
  4143. -* NOTICE *- 21:50:34.034 - 33636572 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1235, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4144. -* NOTICE *- 21:50:34.034 - 33636616 - FormatCmdLine::GetNextLine() - Processing line number: 1236
  4145. -* NOTICE *- 21:50:34.034 - 33636636 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 20 on
  4146. -* NOTICE *- 21:50:34.034 - 33636660 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1236, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4147. -* NOTICE *- 21:50:34.034 - 33636704 - FormatCmdLine::GetNextLine() - Processing line number: 1237
  4148. -* NOTICE *- 21:50:34.034 - 33636724 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 21 on
  4149. -* NOTICE *- 21:50:34.034 - 33636744 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1237, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4150. -* NOTICE *- 21:50:34.034 - 33636788 - FormatCmdLine::GetNextLine() - Processing line number: 1238
  4151. -* NOTICE *- 21:50:34.034 - 33636808 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 22 on
  4152. -* NOTICE *- 21:50:34.034 - 33636832 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1238, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4153. -* NOTICE *- 21:50:34.034 - 33636876 - FormatCmdLine::GetNextLine() - Processing line number: 1239
  4154. -* NOTICE *- 21:50:34.034 - 33636896 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 23 on
  4155. -* NOTICE *- 21:50:34.034 - 33636916 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1239, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4156. -* NOTICE *- 21:50:34.035 - 33636964 - FormatCmdLine::GetNextLine() - Processing line number: 1240
  4157. -* NOTICE *- 21:50:34.035 - 33636988 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 24 on
  4158. -* NOTICE *- 21:50:34.035 - 33637008 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1240, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4159. -* NOTICE *- 21:50:34.035 - 33637056 - FormatCmdLine::GetNextLine() - Processing line number: 1241
  4160. -* NOTICE *- 21:50:34.035 - 33637076 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 25 on
  4161. -* NOTICE *- 21:50:34.035 - 33637100 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1241, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4162. -* NOTICE *- 21:50:34.035 - 33637144 - FormatCmdLine::GetNextLine() - Processing line number: 1242
  4163. -* NOTICE *- 21:50:34.035 - 33637164 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 26 on
  4164. -* NOTICE *- 21:50:34.035 - 33637188 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1242, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4165. -* NOTICE *- 21:50:34.035 - 33637232 - FormatCmdLine::GetNextLine() - Processing line number: 1243
  4166. -* NOTICE *- 21:50:34.035 - 33637252 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 27 on
  4167. -* NOTICE *- 21:50:34.035 - 33637272 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1243, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4168. -* NOTICE *- 21:50:34.035 - 33637320 - FormatCmdLine::GetNextLine() - Processing line number: 1244
  4169. -* NOTICE *- 21:50:34.035 - 33637340 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 28 on
  4170. -* NOTICE *- 21:50:34.035 - 33637360 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1244, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4171. -* NOTICE *- 21:50:34.035 - 33637408 - FormatCmdLine::GetNextLine() - Processing line number: 1245
  4172. -* NOTICE *- 21:50:34.035 - 33637428 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 29 on
  4173. -* NOTICE *- 21:50:34.035 - 33637448 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1245, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4174. -* NOTICE *- 21:50:34.035 - 33637492 - FormatCmdLine::GetNextLine() - Processing line number: 1246
  4175. -* NOTICE *- 21:50:34.035 - 33637512 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 30 on
  4176. -* NOTICE *- 21:50:34.035 - 33637536 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1246, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4177. -* NOTICE *- 21:50:34.035 - 33637592 - FormatCmdLine::GetNextLine() - Processing line number: 1247
  4178. -* NOTICE *- 21:50:34.035 - 33637612 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT8" 31 on
  4179. -* NOTICE *- 21:50:34.035 - 33637636 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1247, Command Line: -SetClusterDisplay "Spike Window 1" "TT8" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4180. -* NOTICE *- 21:50:34.035 - 33637772 - FormatCmdLine::GetNextLine() - Processing line number: 1248
  4181. -* NOTICE *- 21:50:34.035 - 33637804 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 0 0 1
  4182. -* NOTICE *- 21:50:34.035 - 33637900 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1248, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4183. -* NOTICE *- 21:50:34.041 - 33643048 - FormatCmdLine::GetNextLine() - Processing line number: 1249
  4184. -* NOTICE *- 21:50:34.041 - 33643072 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 0 -3000 32767 32767 -3000
  4185. -* NOTICE *- 21:50:34.041 - 33643096 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1249, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4186. -* NOTICE *- 21:50:34.041 - 33643164 - FormatCmdLine::GetNextLine() - Processing line number: 1250
  4187. -* NOTICE *- 21:50:34.041 - 33643184 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 1 0 2
  4188. -* NOTICE *- 21:50:34.041 - 33643208 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1250, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4189. -* NOTICE *- 21:50:34.061 - 33663752 - FormatCmdLine::GetNextLine() - Processing line number: 1251
  4190. -* NOTICE *- 21:50:34.061 - 33663792 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 1 -3000 32767 32767 -3000
  4191. -* NOTICE *- 21:50:34.061 - 33663816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1251, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4192. -* NOTICE *- 21:50:34.061 - 33663880 - FormatCmdLine::GetNextLine() - Processing line number: 1252
  4193. -* NOTICE *- 21:50:34.061 - 33663900 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 2 0 3
  4194. -* NOTICE *- 21:50:34.061 - 33663924 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1252, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4195. -* NOTICE *- 21:50:34.062 - 33663992 - FormatCmdLine::GetNextLine() - Processing line number: 1253
  4196. -* NOTICE *- 21:50:34.062 - 33664016 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 2 -3000 32767 32767 -3000
  4197. -* NOTICE *- 21:50:34.062 - 33664036 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1253, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4198. -* NOTICE *- 21:50:34.062 - 33664100 - FormatCmdLine::GetNextLine() - Processing line number: 1254
  4199. -* NOTICE *- 21:50:34.062 - 33664120 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 3 1 2
  4200. -* NOTICE *- 21:50:34.062 - 33664140 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1254, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4201. -* NOTICE *- 21:50:34.062 - 33664204 - FormatCmdLine::GetNextLine() - Processing line number: 1255
  4202. -* NOTICE *- 21:50:34.062 - 33664228 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 3 -3000 32767 32767 -3000
  4203. -* NOTICE *- 21:50:34.062 - 33664248 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1255, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4204. -* NOTICE *- 21:50:34.062 - 33664312 - FormatCmdLine::GetNextLine() - Processing line number: 1256
  4205. -* NOTICE *- 21:50:34.062 - 33664336 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 4 1 3
  4206. -* NOTICE *- 21:50:34.062 - 33664360 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1256, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4207. -* NOTICE *- 21:50:34.062 - 33664424 - FormatCmdLine::GetNextLine() - Processing line number: 1257
  4208. -* NOTICE *- 21:50:34.062 - 33664448 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 4 -3000 32767 32767 -3000
  4209. -* NOTICE *- 21:50:34.062 - 33664472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1257, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4210. -* NOTICE *- 21:50:34.062 - 33664532 - FormatCmdLine::GetNextLine() - Processing line number: 1258
  4211. -* NOTICE *- 21:50:34.062 - 33664552 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT8" 5 2 3
  4212. -* NOTICE *- 21:50:34.062 - 33664576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1258, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT8" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4213. -* NOTICE *- 21:50:34.062 - 33664636 - FormatCmdLine::GetNextLine() - Processing line number: 1259
  4214. -* NOTICE *- 21:50:34.062 - 33664660 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT8" 5 -3000 32767 32767 -3000
  4215. -* NOTICE *- 21:50:34.062 - 33664680 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1259, Command Line: -SetFeaturePlotView "Spike Window 1" "TT8" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4216. -* NOTICE *- 21:50:34.062 - 33664740 - FormatCmdLine::GetNextLine() - Processing line number: 1260
  4217. -* NOTICE *- 21:50:34.062 - 33664760 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT9"
  4218. -* NOTICE *- 21:50:34.062 - 33664784 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1260, Command Line: -AddPlot "Spike Window 1" "TT9", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4219. -* NOTICE *- 21:50:34.071 - 33673760 - FormatCmdLine::GetNextLine() - Processing line number: 1261
  4220. -* NOTICE *- 21:50:34.071 - 33673792 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT9" "True"
  4221. -* NOTICE *- 21:50:34.071 - 33673816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1261, Command Line: -SetPlotEnabled "Spike Window 1" "TT9" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4222. -* NOTICE *- 21:50:34.071 - 33673868 - FormatCmdLine::GetNextLine() - Processing line number: 1262
  4223. -* NOTICE *- 21:50:34.071 - 33673888 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 0 on
  4224. -* NOTICE *- 21:50:34.071 - 33673912 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1262, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4225. -* NOTICE *- 21:50:34.072 - 33673960 - FormatCmdLine::GetNextLine() - Processing line number: 1263
  4226. -* NOTICE *- 21:50:34.072 - 33673984 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 1 on
  4227. -* NOTICE *- 21:50:34.072 - 33674004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1263, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4228. -* NOTICE *- 21:50:34.072 - 33674056 - FormatCmdLine::GetNextLine() - Processing line number: 1264
  4229. -* NOTICE *- 21:50:34.072 - 33674080 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 2 on
  4230. -* NOTICE *- 21:50:34.072 - 33674104 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1264, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4231. -* NOTICE *- 21:50:34.072 - 33674148 - FormatCmdLine::GetNextLine() - Processing line number: 1265
  4232. -* NOTICE *- 21:50:34.072 - 33674168 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 3 on
  4233. -* NOTICE *- 21:50:34.072 - 33674192 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1265, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4234. -* NOTICE *- 21:50:34.072 - 33674236 - FormatCmdLine::GetNextLine() - Processing line number: 1266
  4235. -* NOTICE *- 21:50:34.072 - 33674256 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 4 on
  4236. -* NOTICE *- 21:50:34.072 - 33674280 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1266, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4237. -* NOTICE *- 21:50:34.072 - 33674324 - FormatCmdLine::GetNextLine() - Processing line number: 1267
  4238. -* NOTICE *- 21:50:34.072 - 33674344 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 5 on
  4239. -* NOTICE *- 21:50:34.072 - 33674364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1267, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4240. -* NOTICE *- 21:50:34.072 - 33674412 - FormatCmdLine::GetNextLine() - Processing line number: 1268
  4241. -* NOTICE *- 21:50:34.072 - 33674432 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 6 on
  4242. -* NOTICE *- 21:50:34.072 - 33674452 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1268, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4243. -* NOTICE *- 21:50:34.072 - 33674496 - FormatCmdLine::GetNextLine() - Processing line number: 1269
  4244. -* NOTICE *- 21:50:34.072 - 33674516 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 7 on
  4245. -* NOTICE *- 21:50:34.072 - 33674540 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1269, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4246. -* NOTICE *- 21:50:34.072 - 33674584 - FormatCmdLine::GetNextLine() - Processing line number: 1270
  4247. -* NOTICE *- 21:50:34.072 - 33674604 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 8 on
  4248. -* NOTICE *- 21:50:34.072 - 33674628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1270, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4249. -* NOTICE *- 21:50:34.072 - 33674672 - FormatCmdLine::GetNextLine() - Processing line number: 1271
  4250. -* NOTICE *- 21:50:34.072 - 33674692 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 9 on
  4251. -* NOTICE *- 21:50:34.072 - 33674712 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1271, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4252. -* NOTICE *- 21:50:34.072 - 33674764 - FormatCmdLine::GetNextLine() - Processing line number: 1272
  4253. -* NOTICE *- 21:50:34.072 - 33674784 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 10 on
  4254. -* NOTICE *- 21:50:34.072 - 33674808 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1272, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4255. -* NOTICE *- 21:50:34.072 - 33674852 - FormatCmdLine::GetNextLine() - Processing line number: 1273
  4256. -* NOTICE *- 21:50:34.072 - 33674872 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 11 on
  4257. -* NOTICE *- 21:50:34.072 - 33674896 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1273, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4258. -* NOTICE *- 21:50:34.072 - 33674944 - FormatCmdLine::GetNextLine() - Processing line number: 1274
  4259. -* NOTICE *- 21:50:34.073 - 33674964 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 12 on
  4260. -* NOTICE *- 21:50:34.073 - 33674988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1274, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4261. -* NOTICE *- 21:50:34.073 - 33675036 - FormatCmdLine::GetNextLine() - Processing line number: 1275
  4262. -* NOTICE *- 21:50:34.073 - 33675056 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 13 on
  4263. -* NOTICE *- 21:50:34.073 - 33675076 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1275, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4264. -* NOTICE *- 21:50:34.073 - 33675124 - FormatCmdLine::GetNextLine() - Processing line number: 1276
  4265. -* NOTICE *- 21:50:34.073 - 33675144 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 14 on
  4266. -* NOTICE *- 21:50:34.073 - 33675164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1276, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4267. -* NOTICE *- 21:50:34.073 - 33675208 - FormatCmdLine::GetNextLine() - Processing line number: 1277
  4268. -* NOTICE *- 21:50:34.073 - 33675228 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 15 on
  4269. -* NOTICE *- 21:50:34.073 - 33675252 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1277, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4270. -* NOTICE *- 21:50:34.073 - 33675300 - FormatCmdLine::GetNextLine() - Processing line number: 1278
  4271. -* NOTICE *- 21:50:34.073 - 33675316 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 16 on
  4272. -* NOTICE *- 21:50:34.073 - 33675340 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1278, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4273. -* NOTICE *- 21:50:34.073 - 33675384 - FormatCmdLine::GetNextLine() - Processing line number: 1279
  4274. -* NOTICE *- 21:50:34.073 - 33675404 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 17 on
  4275. -* NOTICE *- 21:50:34.073 - 33675428 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1279, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4276. -* NOTICE *- 21:50:34.073 - 33675480 - FormatCmdLine::GetNextLine() - Processing line number: 1280
  4277. -* NOTICE *- 21:50:34.073 - 33675500 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 18 on
  4278. -* NOTICE *- 21:50:34.073 - 33675524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1280, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4279. -* NOTICE *- 21:50:34.073 - 33675568 - FormatCmdLine::GetNextLine() - Processing line number: 1281
  4280. -* NOTICE *- 21:50:34.073 - 33675588 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 19 on
  4281. -* NOTICE *- 21:50:34.073 - 33675612 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1281, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4282. -* NOTICE *- 21:50:34.073 - 33675656 - FormatCmdLine::GetNextLine() - Processing line number: 1282
  4283. -* NOTICE *- 21:50:34.073 - 33675676 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 20 on
  4284. -* NOTICE *- 21:50:34.073 - 33675696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1282, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4285. -* NOTICE *- 21:50:34.073 - 33675744 - FormatCmdLine::GetNextLine() - Processing line number: 1283
  4286. -* NOTICE *- 21:50:34.073 - 33675764 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 21 on
  4287. -* NOTICE *- 21:50:34.073 - 33675784 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1283, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4288. -* NOTICE *- 21:50:34.073 - 33675832 - FormatCmdLine::GetNextLine() - Processing line number: 1284
  4289. -* NOTICE *- 21:50:34.073 - 33675852 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 22 on
  4290. -* NOTICE *- 21:50:34.073 - 33675872 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1284, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4291. -* NOTICE *- 21:50:34.073 - 33675916 - FormatCmdLine::GetNextLine() - Processing line number: 1285
  4292. -* NOTICE *- 21:50:34.073 - 33675936 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 23 on
  4293. -* NOTICE *- 21:50:34.074 - 33675964 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1285, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4294. -* NOTICE *- 21:50:34.074 - 33676012 - FormatCmdLine::GetNextLine() - Processing line number: 1286
  4295. -* NOTICE *- 21:50:34.074 - 33676032 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 24 on
  4296. -* NOTICE *- 21:50:34.074 - 33676052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1286, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4297. -* NOTICE *- 21:50:34.074 - 33676100 - FormatCmdLine::GetNextLine() - Processing line number: 1287
  4298. -* NOTICE *- 21:50:34.074 - 33676120 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 25 on
  4299. -* NOTICE *- 21:50:34.074 - 33676140 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1287, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4300. -* NOTICE *- 21:50:34.074 - 33676192 - FormatCmdLine::GetNextLine() - Processing line number: 1288
  4301. -* NOTICE *- 21:50:34.074 - 33676212 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 26 on
  4302. -* NOTICE *- 21:50:34.074 - 33676236 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1288, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4303. -* NOTICE *- 21:50:34.074 - 33676280 - FormatCmdLine::GetNextLine() - Processing line number: 1289
  4304. -* NOTICE *- 21:50:34.074 - 33676300 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 27 on
  4305. -* NOTICE *- 21:50:34.074 - 33676324 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1289, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4306. -* NOTICE *- 21:50:34.074 - 33676368 - FormatCmdLine::GetNextLine() - Processing line number: 1290
  4307. -* NOTICE *- 21:50:34.074 - 33676388 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 28 on
  4308. -* NOTICE *- 21:50:34.074 - 33676412 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1290, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4309. -* NOTICE *- 21:50:34.074 - 33676456 - FormatCmdLine::GetNextLine() - Processing line number: 1291
  4310. -* NOTICE *- 21:50:34.074 - 33676476 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 29 on
  4311. -* NOTICE *- 21:50:34.074 - 33676500 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1291, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4312. -* NOTICE *- 21:50:34.074 - 33676548 - FormatCmdLine::GetNextLine() - Processing line number: 1292
  4313. -* NOTICE *- 21:50:34.074 - 33676568 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 30 on
  4314. -* NOTICE *- 21:50:34.074 - 33676588 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1292, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4315. -* NOTICE *- 21:50:34.074 - 33676636 - FormatCmdLine::GetNextLine() - Processing line number: 1293
  4316. -* NOTICE *- 21:50:34.074 - 33676656 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT9" 31 on
  4317. -* NOTICE *- 21:50:34.074 - 33676676 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1293, Command Line: -SetClusterDisplay "Spike Window 1" "TT9" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4318. -* NOTICE *- 21:50:34.074 - 33676724 - FormatCmdLine::GetNextLine() - Processing line number: 1294
  4319. -* NOTICE *- 21:50:34.074 - 33676744 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 0 0 1
  4320. -* NOTICE *- 21:50:34.074 - 33676764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1294, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4321. -* NOTICE *- 21:50:34.074 - 33676832 - FormatCmdLine::GetNextLine() - Processing line number: 1295
  4322. -* NOTICE *- 21:50:34.074 - 33676852 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 0 -3000 32767 32767 -3000
  4323. -* NOTICE *- 21:50:34.074 - 33676876 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1295, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4324. -* NOTICE *- 21:50:34.074 - 33676944 - FormatCmdLine::GetNextLine() - Processing line number: 1296
  4325. -* NOTICE *- 21:50:34.075 - 33676968 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 1 0 2
  4326. -* NOTICE *- 21:50:34.075 - 33676992 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1296, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4327. -* NOTICE *- 21:50:34.075 - 33677056 - FormatCmdLine::GetNextLine() - Processing line number: 1297
  4328. -* NOTICE *- 21:50:34.075 - 33677076 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 1 -3000 32767 32767 -3000
  4329. -* NOTICE *- 21:50:34.075 - 33677100 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1297, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4330. -* NOTICE *- 21:50:34.075 - 33677160 - FormatCmdLine::GetNextLine() - Processing line number: 1298
  4331. -* NOTICE *- 21:50:34.075 - 33677180 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 2 0 3
  4332. -* NOTICE *- 21:50:34.075 - 33677204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1298, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4333. -* NOTICE *- 21:50:34.075 - 33677268 - FormatCmdLine::GetNextLine() - Processing line number: 1299
  4334. -* NOTICE *- 21:50:34.075 - 33677288 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 2 -3000 32767 32767 -3000
  4335. -* NOTICE *- 21:50:34.075 - 33677312 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1299, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4336. -* NOTICE *- 21:50:34.075 - 33677372 - FormatCmdLine::GetNextLine() - Processing line number: 1300
  4337. -* NOTICE *- 21:50:34.075 - 33677392 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 3 1 2
  4338. -* NOTICE *- 21:50:34.075 - 33677416 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1300, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4339. -* NOTICE *- 21:50:34.075 - 33677476 - FormatCmdLine::GetNextLine() - Processing line number: 1301
  4340. -* NOTICE *- 21:50:34.075 - 33677500 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 3 -3000 32767 32767 -3000
  4341. -* NOTICE *- 21:50:34.075 - 33677524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1301, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4342. -* NOTICE *- 21:50:34.075 - 33677584 - FormatCmdLine::GetNextLine() - Processing line number: 1302
  4343. -* NOTICE *- 21:50:34.075 - 33677604 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 4 1 3
  4344. -* NOTICE *- 21:50:34.075 - 33677628 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1302, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4345. -* NOTICE *- 21:50:34.075 - 33677688 - FormatCmdLine::GetNextLine() - Processing line number: 1303
  4346. -* NOTICE *- 21:50:34.075 - 33677712 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 4 -3000 32767 32767 -3000
  4347. -* NOTICE *- 21:50:34.075 - 33677736 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1303, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4348. -* NOTICE *- 21:50:34.075 - 33677804 - FormatCmdLine::GetNextLine() - Processing line number: 1304
  4349. -* NOTICE *- 21:50:34.075 - 33677824 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT9" 5 2 3
  4350. -* NOTICE *- 21:50:34.075 - 33677848 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1304, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT9" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4351. -* NOTICE *- 21:50:34.075 - 33677908 - FormatCmdLine::GetNextLine() - Processing line number: 1305
  4352. -* NOTICE *- 21:50:34.075 - 33677932 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT9" 5 -3000 32767 32767 -3000
  4353. -* NOTICE *- 21:50:34.076 - 33677956 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1305, Command Line: -SetFeaturePlotView "Spike Window 1" "TT9" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4354. -* NOTICE *- 21:50:34.076 - 33678020 - FormatCmdLine::GetNextLine() - Processing line number: 1306
  4355. -* NOTICE *- 21:50:34.076 - 33678040 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT10"
  4356. -* NOTICE *- 21:50:34.076 - 33678064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1306, Command Line: -AddPlot "Spike Window 1" "TT10", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4357. -* NOTICE *- 21:50:34.085 - 33687300 - FormatCmdLine::GetNextLine() - Processing line number: 1307
  4358. -* NOTICE *- 21:50:34.085 - 33687332 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT10" "True"
  4359. -* NOTICE *- 21:50:34.085 - 33687356 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1307, Command Line: -SetPlotEnabled "Spike Window 1" "TT10" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4360. -* NOTICE *- 21:50:34.085 - 33687408 - FormatCmdLine::GetNextLine() - Processing line number: 1308
  4361. -* NOTICE *- 21:50:34.085 - 33687440 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 0 on
  4362. -* NOTICE *- 21:50:34.085 - 33687472 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1308, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4363. -* NOTICE *- 21:50:34.085 - 33687540 - FormatCmdLine::GetNextLine() - Processing line number: 1309
  4364. -* NOTICE *- 21:50:34.085 - 33687572 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 1 on
  4365. -* NOTICE *- 21:50:34.085 - 33687608 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1309, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4366. -* NOTICE *- 21:50:34.085 - 33687680 - FormatCmdLine::GetNextLine() - Processing line number: 1310
  4367. -* NOTICE *- 21:50:34.085 - 33687708 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 2 on
  4368. -* NOTICE *- 21:50:34.085 - 33687748 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1310, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4369. -* NOTICE *- 21:50:34.085 - 33687816 - FormatCmdLine::GetNextLine() - Processing line number: 1311
  4370. -* NOTICE *- 21:50:34.085 - 33687848 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 3 on
  4371. -* NOTICE *- 21:50:34.085 - 33687888 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1311, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4372. -* NOTICE *- 21:50:34.086 - 33687964 - FormatCmdLine::GetNextLine() - Processing line number: 1312
  4373. -* NOTICE *- 21:50:34.086 - 33687996 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 4 on
  4374. -* NOTICE *- 21:50:34.086 - 33688032 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1312, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4375. -* NOTICE *- 21:50:34.086 - 33688100 - FormatCmdLine::GetNextLine() - Processing line number: 1313
  4376. -* NOTICE *- 21:50:34.086 - 33688132 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 5 on
  4377. -* NOTICE *- 21:50:34.086 - 33688168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1313, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4378. -* NOTICE *- 21:50:34.086 - 33688240 - FormatCmdLine::GetNextLine() - Processing line number: 1314
  4379. -* NOTICE *- 21:50:34.086 - 33688672 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 6 on
  4380. -* NOTICE *- 21:50:34.086 - 33688700 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1314, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4381. -* NOTICE *- 21:50:34.086 - 33688752 - FormatCmdLine::GetNextLine() - Processing line number: 1315
  4382. -* NOTICE *- 21:50:34.086 - 33688772 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 7 on
  4383. -* NOTICE *- 21:50:34.086 - 33688796 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1315, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4384. -* NOTICE *- 21:50:34.086 - 33688840 - FormatCmdLine::GetNextLine() - Processing line number: 1316
  4385. -* NOTICE *- 21:50:34.086 - 33688860 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 8 on
  4386. -* NOTICE *- 21:50:34.086 - 33688884 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1316, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4387. -* NOTICE *- 21:50:34.086 - 33688928 - FormatCmdLine::GetNextLine() - Processing line number: 1317
  4388. -* NOTICE *- 21:50:34.087 - 33688952 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 9 on
  4389. -* NOTICE *- 21:50:34.087 - 33688976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1317, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4390. -* NOTICE *- 21:50:34.087 - 33689020 - FormatCmdLine::GetNextLine() - Processing line number: 1318
  4391. -* NOTICE *- 21:50:34.087 - 33689040 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 10 on
  4392. -* NOTICE *- 21:50:34.087 - 33689064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1318, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4393. -* NOTICE *- 21:50:34.087 - 33689112 - FormatCmdLine::GetNextLine() - Processing line number: 1319
  4394. -* NOTICE *- 21:50:34.087 - 33689132 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 11 on
  4395. -* NOTICE *- 21:50:34.087 - 33689156 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1319, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4396. -* NOTICE *- 21:50:34.087 - 33689208 - FormatCmdLine::GetNextLine() - Processing line number: 1320
  4397. -* NOTICE *- 21:50:34.087 - 33689228 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 12 on
  4398. -* NOTICE *- 21:50:34.087 - 33689248 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1320, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4399. -* NOTICE *- 21:50:34.087 - 33689296 - FormatCmdLine::GetNextLine() - Processing line number: 1321
  4400. -* NOTICE *- 21:50:34.087 - 33689316 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 13 on
  4401. -* NOTICE *- 21:50:34.087 - 33689336 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1321, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4402. -* NOTICE *- 21:50:34.087 - 33689384 - FormatCmdLine::GetNextLine() - Processing line number: 1322
  4403. -* NOTICE *- 21:50:34.087 - 33689404 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 14 on
  4404. -* NOTICE *- 21:50:34.087 - 33689424 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1322, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4405. -* NOTICE *- 21:50:34.087 - 33689472 - FormatCmdLine::GetNextLine() - Processing line number: 1323
  4406. -* NOTICE *- 21:50:34.087 - 33689492 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 15 on
  4407. -* NOTICE *- 21:50:34.087 - 33689516 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1323, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4408. -* NOTICE *- 21:50:34.087 - 33689560 - FormatCmdLine::GetNextLine() - Processing line number: 1324
  4409. -* NOTICE *- 21:50:34.087 - 33689580 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 16 on
  4410. -* NOTICE *- 21:50:34.087 - 33689604 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1324, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4411. -* NOTICE *- 21:50:34.087 - 33689648 - FormatCmdLine::GetNextLine() - Processing line number: 1325
  4412. -* NOTICE *- 21:50:34.087 - 33689668 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 17 on
  4413. -* NOTICE *- 21:50:34.087 - 33689692 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1325, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4414. -* NOTICE *- 21:50:34.087 - 33689736 - FormatCmdLine::GetNextLine() - Processing line number: 1326
  4415. -* NOTICE *- 21:50:34.087 - 33689756 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 18 on
  4416. -* NOTICE *- 21:50:34.087 - 33689780 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1326, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4417. -* NOTICE *- 21:50:34.087 - 33689828 - FormatCmdLine::GetNextLine() - Processing line number: 1327
  4418. -* NOTICE *- 21:50:34.087 - 33689848 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 19 on
  4419. -* NOTICE *- 21:50:34.087 - 33689872 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1327, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4420. -* NOTICE *- 21:50:34.087 - 33689936 - FormatCmdLine::GetNextLine() - Processing line number: 1328
  4421. -* NOTICE *- 21:50:34.088 - 33689964 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 20 on
  4422. -* NOTICE *- 21:50:34.088 - 33689984 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1328, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4423. -* NOTICE *- 21:50:34.088 - 33690032 - FormatCmdLine::GetNextLine() - Processing line number: 1329
  4424. -* NOTICE *- 21:50:34.088 - 33690052 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 21 on
  4425. -* NOTICE *- 21:50:34.088 - 33690076 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1329, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4426. -* NOTICE *- 21:50:34.088 - 33690124 - FormatCmdLine::GetNextLine() - Processing line number: 1330
  4427. -* NOTICE *- 21:50:34.088 - 33690144 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 22 on
  4428. -* NOTICE *- 21:50:34.088 - 33690164 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1330, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4429. -* NOTICE *- 21:50:34.088 - 33690212 - FormatCmdLine::GetNextLine() - Processing line number: 1331
  4430. -* NOTICE *- 21:50:34.088 - 33690232 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 23 on
  4431. -* NOTICE *- 21:50:34.088 - 33690252 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1331, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4432. -* NOTICE *- 21:50:34.088 - 33690300 - FormatCmdLine::GetNextLine() - Processing line number: 1332
  4433. -* NOTICE *- 21:50:34.088 - 33690320 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 24 on
  4434. -* NOTICE *- 21:50:34.088 - 33690344 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1332, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4435. -* NOTICE *- 21:50:34.088 - 33690392 - FormatCmdLine::GetNextLine() - Processing line number: 1333
  4436. -* NOTICE *- 21:50:34.088 - 33690412 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 25 on
  4437. -* NOTICE *- 21:50:34.088 - 33690432 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1333, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4438. -* NOTICE *- 21:50:34.088 - 33690480 - FormatCmdLine::GetNextLine() - Processing line number: 1334
  4439. -* NOTICE *- 21:50:34.088 - 33690500 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 26 on
  4440. -* NOTICE *- 21:50:34.088 - 33690520 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1334, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4441. -* NOTICE *- 21:50:34.088 - 33690568 - FormatCmdLine::GetNextLine() - Processing line number: 1335
  4442. -* NOTICE *- 21:50:34.088 - 33690588 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 27 on
  4443. -* NOTICE *- 21:50:34.088 - 33690612 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1335, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4444. -* NOTICE *- 21:50:34.088 - 33690732 - FormatCmdLine::GetNextLine() - Processing line number: 1336
  4445. -* NOTICE *- 21:50:34.088 - 33690768 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 28 on
  4446. -* NOTICE *- 21:50:34.088 - 33690804 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1336, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4447. -* NOTICE *- 21:50:34.105 - 33707484 - FormatCmdLine::GetNextLine() - Processing line number: 1337
  4448. -* NOTICE *- 21:50:34.105 - 33707520 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 29 on
  4449. -* NOTICE *- 21:50:34.105 - 33707544 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1337, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4450. -* NOTICE *- 21:50:34.105 - 33707596 - FormatCmdLine::GetNextLine() - Processing line number: 1338
  4451. -* NOTICE *- 21:50:34.105 - 33707616 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 30 on
  4452. -* NOTICE *- 21:50:34.105 - 33707640 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1338, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4453. -* NOTICE *- 21:50:34.105 - 33707688 - FormatCmdLine::GetNextLine() - Processing line number: 1339
  4454. -* NOTICE *- 21:50:34.105 - 33707708 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT10" 31 on
  4455. -* NOTICE *- 21:50:34.105 - 33707732 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1339, Command Line: -SetClusterDisplay "Spike Window 1" "TT10" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4456. -* NOTICE *- 21:50:34.105 - 33707776 - FormatCmdLine::GetNextLine() - Processing line number: 1340
  4457. -* NOTICE *- 21:50:34.105 - 33707796 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 0 0 1
  4458. -* NOTICE *- 21:50:34.105 - 33707820 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1340, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4459. -* NOTICE *- 21:50:34.113 - 33715252 - FormatCmdLine::GetNextLine() - Processing line number: 1341
  4460. -* NOTICE *- 21:50:34.113 - 33715292 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 0 -3000 32767 32767 -3000
  4461. -* NOTICE *- 21:50:34.113 - 33715316 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1341, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4462. -* NOTICE *- 21:50:34.113 - 33715380 - FormatCmdLine::GetNextLine() - Processing line number: 1342
  4463. -* NOTICE *- 21:50:34.113 - 33715400 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 1 0 2
  4464. -* NOTICE *- 21:50:34.113 - 33715424 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1342, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4465. -* NOTICE *- 21:50:34.113 - 33715488 - FormatCmdLine::GetNextLine() - Processing line number: 1343
  4466. -* NOTICE *- 21:50:34.113 - 33715516 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 1 -3000 32767 32767 -3000
  4467. -* NOTICE *- 21:50:34.113 - 33715540 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1343, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4468. -* NOTICE *- 21:50:34.113 - 33715604 - FormatCmdLine::GetNextLine() - Processing line number: 1344
  4469. -* NOTICE *- 21:50:34.113 - 33715624 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 2 0 3
  4470. -* NOTICE *- 21:50:34.113 - 33715648 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1344, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4471. -* NOTICE *- 21:50:34.113 - 33715712 - FormatCmdLine::GetNextLine() - Processing line number: 1345
  4472. -* NOTICE *- 21:50:34.113 - 33715736 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 2 -3000 32767 32767 -3000
  4473. -* NOTICE *- 21:50:34.113 - 33715756 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1345, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4474. -* NOTICE *- 21:50:34.113 - 33715820 - FormatCmdLine::GetNextLine() - Processing line number: 1346
  4475. -* NOTICE *- 21:50:34.113 - 33715840 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 3 1 2
  4476. -* NOTICE *- 21:50:34.113 - 33715864 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1346, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4477. -* NOTICE *- 21:50:34.113 - 33715928 - FormatCmdLine::GetNextLine() - Processing line number: 1347
  4478. -* NOTICE *- 21:50:34.114 - 33715960 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 3 -3000 32767 32767 -3000
  4479. -* NOTICE *- 21:50:34.114 - 33715984 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1347, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4480. -* NOTICE *- 21:50:34.114 - 33716048 - FormatCmdLine::GetNextLine() - Processing line number: 1348
  4481. -* NOTICE *- 21:50:34.114 - 33716068 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 4 1 3
  4482. -* NOTICE *- 21:50:34.114 - 33716092 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1348, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4483. -* NOTICE *- 21:50:34.114 - 33716156 - FormatCmdLine::GetNextLine() - Processing line number: 1349
  4484. -* NOTICE *- 21:50:34.114 - 33716180 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 4 -3000 32767 32767 -3000
  4485. -* NOTICE *- 21:50:34.114 - 33716200 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1349, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4486. -* NOTICE *- 21:50:34.114 - 33716264 - FormatCmdLine::GetNextLine() - Processing line number: 1350
  4487. -* NOTICE *- 21:50:34.114 - 33716284 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT10" 5 2 3
  4488. -* NOTICE *- 21:50:34.114 - 33716308 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1350, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT10" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4489. -* NOTICE *- 21:50:34.114 - 33716376 - FormatCmdLine::GetNextLine() - Processing line number: 1351
  4490. -* NOTICE *- 21:50:34.114 - 33716400 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT10" 5 -3000 32767 32767 -3000
  4491. -* NOTICE *- 21:50:34.114 - 33716424 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1351, Command Line: -SetFeaturePlotView "Spike Window 1" "TT10" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4492. -* NOTICE *- 21:50:34.114 - 33716484 - FormatCmdLine::GetNextLine() - Processing line number: 1352
  4493. -* NOTICE *- 21:50:34.114 - 33716508 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT11"
  4494. -* NOTICE *- 21:50:34.114 - 33716528 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1352, Command Line: -AddPlot "Spike Window 1" "TT11", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4495. -* NOTICE *- 21:50:34.129 - 33731780 - FormatCmdLine::GetNextLine() - Processing line number: 1353
  4496. -* NOTICE *- 21:50:34.129 - 33731812 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT11" "True"
  4497. -* NOTICE *- 21:50:34.129 - 33731836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1353, Command Line: -SetPlotEnabled "Spike Window 1" "TT11" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4498. -* NOTICE *- 21:50:34.129 - 33731892 - FormatCmdLine::GetNextLine() - Processing line number: 1354
  4499. -* NOTICE *- 21:50:34.129 - 33731912 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 0 on
  4500. -* NOTICE *- 21:50:34.129 - 33731932 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1354, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4501. -* NOTICE *- 21:50:34.130 - 33732000 - FormatCmdLine::GetNextLine() - Processing line number: 1355
  4502. -* NOTICE *- 21:50:34.130 - 33732024 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 1 on
  4503. -* NOTICE *- 21:50:34.130 - 33732044 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1355, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4504. -* NOTICE *- 21:50:34.130 - 33732092 - FormatCmdLine::GetNextLine() - Processing line number: 1356
  4505. -* NOTICE *- 21:50:34.130 - 33732112 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 2 on
  4506. -* NOTICE *- 21:50:34.130 - 33732136 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1356, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4507. -* NOTICE *- 21:50:34.130 - 33732180 - FormatCmdLine::GetNextLine() - Processing line number: 1357
  4508. -* NOTICE *- 21:50:34.130 - 33732200 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 3 on
  4509. -* NOTICE *- 21:50:34.130 - 33732224 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1357, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4510. -* NOTICE *- 21:50:34.130 - 33732272 - FormatCmdLine::GetNextLine() - Processing line number: 1358
  4511. -* NOTICE *- 21:50:34.130 - 33732292 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 4 on
  4512. -* NOTICE *- 21:50:34.130 - 33732312 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1358, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4513. -* NOTICE *- 21:50:34.130 - 33732364 - FormatCmdLine::GetNextLine() - Processing line number: 1359
  4514. -* NOTICE *- 21:50:34.130 - 33732388 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 5 on
  4515. -* NOTICE *- 21:50:34.130 - 33732412 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1359, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4516. -* NOTICE *- 21:50:34.130 - 33732456 - FormatCmdLine::GetNextLine() - Processing line number: 1360
  4517. -* NOTICE *- 21:50:34.130 - 33732476 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 6 on
  4518. -* NOTICE *- 21:50:34.130 - 33732500 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1360, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4519. -* NOTICE *- 21:50:34.130 - 33732548 - FormatCmdLine::GetNextLine() - Processing line number: 1361
  4520. -* NOTICE *- 21:50:34.130 - 33732564 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 7 on
  4521. -* NOTICE *- 21:50:34.130 - 33732588 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1361, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4522. -* NOTICE *- 21:50:34.130 - 33732636 - FormatCmdLine::GetNextLine() - Processing line number: 1362
  4523. -* NOTICE *- 21:50:34.130 - 33732656 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 8 on
  4524. -* NOTICE *- 21:50:34.130 - 33732676 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1362, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4525. -* NOTICE *- 21:50:34.130 - 33732724 - FormatCmdLine::GetNextLine() - Processing line number: 1363
  4526. -* NOTICE *- 21:50:34.130 - 33732744 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 9 on
  4527. -* NOTICE *- 21:50:34.130 - 33732764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1363, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4528. -* NOTICE *- 21:50:34.130 - 33732812 - FormatCmdLine::GetNextLine() - Processing line number: 1364
  4529. -* NOTICE *- 21:50:34.130 - 33732832 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 10 on
  4530. -* NOTICE *- 21:50:34.130 - 33732852 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1364, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4531. -* NOTICE *- 21:50:34.130 - 33732900 - FormatCmdLine::GetNextLine() - Processing line number: 1365
  4532. -* NOTICE *- 21:50:34.130 - 33732920 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 11 on
  4533. -* NOTICE *- 21:50:34.130 - 33732944 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1365, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4534. -* NOTICE *- 21:50:34.131 - 33732996 - FormatCmdLine::GetNextLine() - Processing line number: 1366
  4535. -* NOTICE *- 21:50:34.131 - 33733016 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 12 on
  4536. -* NOTICE *- 21:50:34.131 - 33733036 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1366, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4537. -* NOTICE *- 21:50:34.131 - 33733088 - FormatCmdLine::GetNextLine() - Processing line number: 1367
  4538. -* NOTICE *- 21:50:34.131 - 33733112 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 13 on
  4539. -* NOTICE *- 21:50:34.131 - 33733136 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1367, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4540. -* NOTICE *- 21:50:34.131 - 33733180 - FormatCmdLine::GetNextLine() - Processing line number: 1368
  4541. -* NOTICE *- 21:50:34.131 - 33733200 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 14 on
  4542. -* NOTICE *- 21:50:34.131 - 33733224 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1368, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4543. -* NOTICE *- 21:50:34.131 - 33733272 - FormatCmdLine::GetNextLine() - Processing line number: 1369
  4544. -* NOTICE *- 21:50:34.131 - 33733292 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 15 on
  4545. -* NOTICE *- 21:50:34.131 - 33733312 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1369, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4546. -* NOTICE *- 21:50:34.131 - 33733360 - FormatCmdLine::GetNextLine() - Processing line number: 1370
  4547. -* NOTICE *- 21:50:34.131 - 33733380 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 16 on
  4548. -* NOTICE *- 21:50:34.131 - 33733404 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1370, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4549. -* NOTICE *- 21:50:34.131 - 33733448 - FormatCmdLine::GetNextLine() - Processing line number: 1371
  4550. -* NOTICE *- 21:50:34.131 - 33733468 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 17 on
  4551. -* NOTICE *- 21:50:34.131 - 33733492 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1371, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4552. -* NOTICE *- 21:50:34.131 - 33733540 - FormatCmdLine::GetNextLine() - Processing line number: 1372
  4553. -* NOTICE *- 21:50:34.131 - 33733560 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 18 on
  4554. -* NOTICE *- 21:50:34.131 - 33733580 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1372, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4555. -* NOTICE *- 21:50:34.131 - 33733628 - FormatCmdLine::GetNextLine() - Processing line number: 1373
  4556. -* NOTICE *- 21:50:34.131 - 33733648 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 19 on
  4557. -* NOTICE *- 21:50:34.131 - 33733668 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1373, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4558. -* NOTICE *- 21:50:34.131 - 33733716 - FormatCmdLine::GetNextLine() - Processing line number: 1374
  4559. -* NOTICE *- 21:50:34.131 - 33733736 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 20 on
  4560. -* NOTICE *- 21:50:34.131 - 33733760 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1374, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4561. -* NOTICE *- 21:50:34.131 - 33733888 - FormatCmdLine::GetNextLine() - Processing line number: 1375
  4562. -* NOTICE *- 21:50:34.131 - 33733916 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 21 on
  4563. -* NOTICE *- 21:50:34.131 - 33733936 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1375, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4564. -* NOTICE *- 21:50:34.132 - 33733992 - FormatCmdLine::GetNextLine() - Processing line number: 1376
  4565. -* NOTICE *- 21:50:34.132 - 33734012 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 22 on
  4566. -* NOTICE *- 21:50:34.132 - 33734032 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1376, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4567. -* NOTICE *- 21:50:34.132 - 33734080 - FormatCmdLine::GetNextLine() - Processing line number: 1377
  4568. -* NOTICE *- 21:50:34.132 - 33734100 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 23 on
  4569. -* NOTICE *- 21:50:34.132 - 33734124 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1377, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4570. -* NOTICE *- 21:50:34.132 - 33734172 - FormatCmdLine::GetNextLine() - Processing line number: 1378
  4571. -* NOTICE *- 21:50:34.132 - 33734192 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 24 on
  4572. -* NOTICE *- 21:50:34.132 - 33734212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1378, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4573. -* NOTICE *- 21:50:34.132 - 33734260 - FormatCmdLine::GetNextLine() - Processing line number: 1379
  4574. -* NOTICE *- 21:50:34.132 - 33734280 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 25 on
  4575. -* NOTICE *- 21:50:34.132 - 33734300 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1379, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4576. -* NOTICE *- 21:50:34.132 - 33734348 - FormatCmdLine::GetNextLine() - Processing line number: 1380
  4577. -* NOTICE *- 21:50:34.132 - 33734368 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 26 on
  4578. -* NOTICE *- 21:50:34.132 - 33734388 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1380, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4579. -* NOTICE *- 21:50:34.132 - 33734436 - FormatCmdLine::GetNextLine() - Processing line number: 1381
  4580. -* NOTICE *- 21:50:34.132 - 33734456 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 27 on
  4581. -* NOTICE *- 21:50:34.132 - 33734480 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1381, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4582. -* NOTICE *- 21:50:34.132 - 33734536 - FormatCmdLine::GetNextLine() - Processing line number: 1382
  4583. -* NOTICE *- 21:50:34.132 - 33734560 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 28 on
  4584. -* NOTICE *- 21:50:34.132 - 33734584 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1382, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4585. -* NOTICE *- 21:50:34.132 - 33734632 - FormatCmdLine::GetNextLine() - Processing line number: 1383
  4586. -* NOTICE *- 21:50:34.132 - 33734656 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 29 on
  4587. -* NOTICE *- 21:50:34.132 - 33734680 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1383, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4588. -* NOTICE *- 21:50:34.132 - 33734728 - FormatCmdLine::GetNextLine() - Processing line number: 1384
  4589. -* NOTICE *- 21:50:34.132 - 33734748 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 30 on
  4590. -* NOTICE *- 21:50:34.132 - 33734768 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1384, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4591. -* NOTICE *- 21:50:34.132 - 33734816 - FormatCmdLine::GetNextLine() - Processing line number: 1385
  4592. -* NOTICE *- 21:50:34.132 - 33734836 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT11" 31 on
  4593. -* NOTICE *- 21:50:34.132 - 33734856 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1385, Command Line: -SetClusterDisplay "Spike Window 1" "TT11" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4594. -* NOTICE *- 21:50:34.132 - 33734904 - FormatCmdLine::GetNextLine() - Processing line number: 1386
  4595. -* NOTICE *- 21:50:34.132 - 33734924 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 0 0 1
  4596. -* NOTICE *- 21:50:34.133 - 33734948 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1386, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4597. -* NOTICE *- 21:50:34.133 - 33735288 - FormatCmdLine::GetNextLine() - Processing line number: 1387
  4598. -* NOTICE *- 21:50:34.133 - 33735320 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 0 -3000 32767 32767 -3000
  4599. -* NOTICE *- 21:50:34.133 - 33735344 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1387, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4600. -* NOTICE *- 21:50:34.140 - 33742752 - FormatCmdLine::GetNextLine() - Processing line number: 1388
  4601. -* NOTICE *- 21:50:34.140 - 33742792 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 1 0 2
  4602. -* NOTICE *- 21:50:34.140 - 33742816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1388, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4603. -* NOTICE *- 21:50:34.148 - 33750428 - FormatCmdLine::GetNextLine() - Processing line number: 1389
  4604. -* NOTICE *- 21:50:34.148 - 33750468 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 1 -3000 32767 32767 -3000
  4605. -* NOTICE *- 21:50:34.148 - 33750492 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1389, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4606. -* NOTICE *- 21:50:34.148 - 33750560 - FormatCmdLine::GetNextLine() - Processing line number: 1390
  4607. -* NOTICE *- 21:50:34.148 - 33750580 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 2 0 3
  4608. -* NOTICE *- 21:50:34.148 - 33750608 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1390, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4609. -* NOTICE *- 21:50:34.148 - 33750680 - FormatCmdLine::GetNextLine() - Processing line number: 1391
  4610. -* NOTICE *- 21:50:34.148 - 33750704 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 2 -3000 32767 32767 -3000
  4611. -* NOTICE *- 21:50:34.148 - 33750728 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1391, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4612. -* NOTICE *- 21:50:34.148 - 33750792 - FormatCmdLine::GetNextLine() - Processing line number: 1392
  4613. -* NOTICE *- 21:50:34.148 - 33750812 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 3 1 2
  4614. -* NOTICE *- 21:50:34.148 - 33750836 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1392, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4615. -* NOTICE *- 21:50:34.148 - 33750908 - FormatCmdLine::GetNextLine() - Processing line number: 1393
  4616. -* NOTICE *- 21:50:34.148 - 33750940 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 3 -3000 32767 32767 -3000
  4617. -* NOTICE *- 21:50:34.149 - 33750988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1393, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4618. -* NOTICE *- 21:50:34.149 - 33751084 - FormatCmdLine::GetNextLine() - Processing line number: 1394
  4619. -* NOTICE *- 21:50:34.149 - 33751120 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 4 1 3
  4620. -* NOTICE *- 21:50:34.149 - 33751152 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1394, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4621. -* NOTICE *- 21:50:34.149 - 33751256 - FormatCmdLine::GetNextLine() - Processing line number: 1395
  4622. -* NOTICE *- 21:50:34.149 - 33751292 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 4 -3000 32767 32767 -3000
  4623. -* NOTICE *- 21:50:34.149 - 33751328 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1395, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4624. -* NOTICE *- 21:50:34.149 - 33751424 - FormatCmdLine::GetNextLine() - Processing line number: 1396
  4625. -* NOTICE *- 21:50:34.149 - 33751456 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT11" 5 2 3
  4626. -* NOTICE *- 21:50:34.149 - 33751488 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1396, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT11" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4627. -* NOTICE *- 21:50:34.149 - 33751592 - FormatCmdLine::GetNextLine() - Processing line number: 1397
  4628. -* NOTICE *- 21:50:34.149 - 33751620 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT11" 5 -3000 32767 32767 -3000
  4629. -* NOTICE *- 21:50:34.149 - 33751644 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1397, Command Line: -SetFeaturePlotView "Spike Window 1" "TT11" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4630. -* NOTICE *- 21:50:34.149 - 33751732 - FormatCmdLine::GetNextLine() - Processing line number: 1398
  4631. -* NOTICE *- 21:50:34.149 - 33751768 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Spike Window 1" "TT12"
  4632. -* NOTICE *- 21:50:34.149 - 33751808 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1398, Command Line: -AddPlot "Spike Window 1" "TT12", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4633. -* NOTICE *- 21:50:34.172 - 33774920 - FormatCmdLine::GetNextLine() - Processing line number: 1399
  4634. -* NOTICE *- 21:50:34.173 - 33775568 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Spike Window 1" "TT12" "True"
  4635. -* NOTICE *- 21:50:34.173 - 33775608 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1399, Command Line: -SetPlotEnabled "Spike Window 1" "TT12" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4636. -* NOTICE *- 21:50:34.173 - 33775688 - FormatCmdLine::GetNextLine() - Processing line number: 1400
  4637. -* NOTICE *- 21:50:34.173 - 33775720 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 0 on
  4638. -* NOTICE *- 21:50:34.173 - 33775752 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1400, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 0 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4639. -* NOTICE *- 21:50:34.173 - 33775836 - FormatCmdLine::GetNextLine() - Processing line number: 1401
  4640. -* NOTICE *- 21:50:34.173 - 33775876 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 1 on
  4641. -* NOTICE *- 21:50:34.173 - 33775924 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1401, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 1 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4642. -* NOTICE *- 21:50:34.174 - 33775988 - FormatCmdLine::GetNextLine() - Processing line number: 1402
  4643. -* NOTICE *- 21:50:34.174 - 33776012 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 2 on
  4644. -* NOTICE *- 21:50:34.174 - 33776036 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1402, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 2 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4645. -* NOTICE *- 21:50:34.174 - 33776084 - FormatCmdLine::GetNextLine() - Processing line number: 1403
  4646. -* NOTICE *- 21:50:34.174 - 33776104 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 3 on
  4647. -* NOTICE *- 21:50:34.174 - 33776128 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1403, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 3 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4648. -* NOTICE *- 21:50:34.174 - 33776176 - FormatCmdLine::GetNextLine() - Processing line number: 1404
  4649. -* NOTICE *- 21:50:34.174 - 33776196 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 4 on
  4650. -* NOTICE *- 21:50:34.174 - 33776220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1404, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 4 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4651. -* NOTICE *- 21:50:34.174 - 33776284 - FormatCmdLine::GetNextLine() - Processing line number: 1405
  4652. -* NOTICE *- 21:50:34.174 - 33776308 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 5 on
  4653. -* NOTICE *- 21:50:34.174 - 33776328 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1405, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 5 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4654. -* NOTICE *- 21:50:34.174 - 33776384 - FormatCmdLine::GetNextLine() - Processing line number: 1406
  4655. -* NOTICE *- 21:50:34.174 - 33776404 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 6 on
  4656. -* NOTICE *- 21:50:34.174 - 33776428 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1406, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 6 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4657. -* NOTICE *- 21:50:34.174 - 33776476 - FormatCmdLine::GetNextLine() - Processing line number: 1407
  4658. -* NOTICE *- 21:50:34.174 - 33776500 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 7 on
  4659. -* NOTICE *- 21:50:34.174 - 33776524 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1407, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 7 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4660. -* NOTICE *- 21:50:34.174 - 33776568 - FormatCmdLine::GetNextLine() - Processing line number: 1408
  4661. -* NOTICE *- 21:50:34.174 - 33776592 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 8 on
  4662. -* NOTICE *- 21:50:34.174 - 33776612 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1408, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 8 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4663. -* NOTICE *- 21:50:34.174 - 33776660 - FormatCmdLine::GetNextLine() - Processing line number: 1409
  4664. -* NOTICE *- 21:50:34.174 - 33776684 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 9 on
  4665. -* NOTICE *- 21:50:34.174 - 33776704 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1409, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 9 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4666. -* NOTICE *- 21:50:34.174 - 33776752 - FormatCmdLine::GetNextLine() - Processing line number: 1410
  4667. -* NOTICE *- 21:50:34.174 - 33776776 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 10 on
  4668. -* NOTICE *- 21:50:34.174 - 33776796 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1410, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 10 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4669. -* NOTICE *- 21:50:34.174 - 33776848 - FormatCmdLine::GetNextLine() - Processing line number: 1411
  4670. -* NOTICE *- 21:50:34.174 - 33776868 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 11 on
  4671. -* NOTICE *- 21:50:34.174 - 33776892 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1411, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 11 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4672. -* NOTICE *- 21:50:34.174 - 33776940 - FormatCmdLine::GetNextLine() - Processing line number: 1412
  4673. -* NOTICE *- 21:50:34.175 - 33776964 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 12 on
  4674. -* NOTICE *- 21:50:34.175 - 33776988 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1412, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 12 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4675. -* NOTICE *- 21:50:34.175 - 33777036 - FormatCmdLine::GetNextLine() - Processing line number: 1413
  4676. -* NOTICE *- 21:50:34.175 - 33777056 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 13 on
  4677. -* NOTICE *- 21:50:34.175 - 33777080 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1413, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 13 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4678. -* NOTICE *- 21:50:34.175 - 33777132 - FormatCmdLine::GetNextLine() - Processing line number: 1414
  4679. -* NOTICE *- 21:50:34.175 - 33777156 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 14 on
  4680. -* NOTICE *- 21:50:34.175 - 33777180 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1414, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 14 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4681. -* NOTICE *- 21:50:34.175 - 33777228 - FormatCmdLine::GetNextLine() - Processing line number: 1415
  4682. -* NOTICE *- 21:50:34.175 - 33777248 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 15 on
  4683. -* NOTICE *- 21:50:34.175 - 33777272 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1415, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 15 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4684. -* NOTICE *- 21:50:34.175 - 33777320 - FormatCmdLine::GetNextLine() - Processing line number: 1416
  4685. -* NOTICE *- 21:50:34.175 - 33777340 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 16 on
  4686. -* NOTICE *- 21:50:34.175 - 33777364 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1416, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 16 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4687. -* NOTICE *- 21:50:34.175 - 33777412 - FormatCmdLine::GetNextLine() - Processing line number: 1417
  4688. -* NOTICE *- 21:50:34.175 - 33777436 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 17 on
  4689. -* NOTICE *- 21:50:34.175 - 33777456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1417, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 17 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4690. -* NOTICE *- 21:50:34.175 - 33777508 - FormatCmdLine::GetNextLine() - Processing line number: 1418
  4691. -* NOTICE *- 21:50:34.175 - 33777528 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 18 on
  4692. -* NOTICE *- 21:50:34.175 - 33777552 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1418, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 18 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4693. -* NOTICE *- 21:50:34.175 - 33777600 - FormatCmdLine::GetNextLine() - Processing line number: 1419
  4694. -* NOTICE *- 21:50:34.175 - 33777620 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 19 on
  4695. -* NOTICE *- 21:50:34.175 - 33777644 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1419, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 19 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4696. -* NOTICE *- 21:50:34.175 - 33777692 - FormatCmdLine::GetNextLine() - Processing line number: 1420
  4697. -* NOTICE *- 21:50:34.175 - 33777712 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 20 on
  4698. -* NOTICE *- 21:50:34.175 - 33777736 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1420, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 20 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4699. -* NOTICE *- 21:50:34.175 - 33777784 - FormatCmdLine::GetNextLine() - Processing line number: 1421
  4700. -* NOTICE *- 21:50:34.175 - 33777804 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 21 on
  4701. -* NOTICE *- 21:50:34.175 - 33777828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1421, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 21 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4702. -* NOTICE *- 21:50:34.175 - 33777880 - FormatCmdLine::GetNextLine() - Processing line number: 1422
  4703. -* NOTICE *- 21:50:34.175 - 33777904 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 22 on
  4704. -* NOTICE *- 21:50:34.175 - 33777928 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1422, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 22 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4705. -* NOTICE *- 21:50:34.176 - 33777980 - FormatCmdLine::GetNextLine() - Processing line number: 1423
  4706. -* NOTICE *- 21:50:34.176 - 33778000 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 23 on
  4707. -* NOTICE *- 21:50:34.176 - 33778024 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1423, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 23 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4708. -* NOTICE *- 21:50:34.176 - 33778072 - FormatCmdLine::GetNextLine() - Processing line number: 1424
  4709. -* NOTICE *- 21:50:34.176 - 33778092 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 24 on
  4710. -* NOTICE *- 21:50:34.176 - 33778116 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1424, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 24 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4711. -* NOTICE *- 21:50:34.176 - 33778168 - FormatCmdLine::GetNextLine() - Processing line number: 1425
  4712. -* NOTICE *- 21:50:34.176 - 33778188 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 25 on
  4713. -* NOTICE *- 21:50:34.176 - 33778212 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1425, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 25 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4714. -* NOTICE *- 21:50:34.176 - 33778260 - FormatCmdLine::GetNextLine() - Processing line number: 1426
  4715. -* NOTICE *- 21:50:34.176 - 33778280 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 26 on
  4716. -* NOTICE *- 21:50:34.176 - 33778304 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1426, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 26 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4717. -* NOTICE *- 21:50:34.176 - 33778408 - FormatCmdLine::GetNextLine() - Processing line number: 1427
  4718. -* NOTICE *- 21:50:34.176 - 33778432 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 27 on
  4719. -* NOTICE *- 21:50:34.176 - 33778456 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1427, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 27 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4720. -* NOTICE *- 21:50:34.180 - 33782700 - FormatCmdLine::GetNextLine() - Processing line number: 1428
  4721. -* NOTICE *- 21:50:34.180 - 33782740 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 28 on
  4722. -* NOTICE *- 21:50:34.180 - 33782764 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1428, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 28 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4723. -* NOTICE *- 21:50:34.180 - 33782816 - FormatCmdLine::GetNextLine() - Processing line number: 1429
  4724. -* NOTICE *- 21:50:34.180 - 33782836 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 29 on
  4725. -* NOTICE *- 21:50:34.180 - 33782860 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1429, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 29 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4726. -* NOTICE *- 21:50:34.180 - 33782912 - FormatCmdLine::GetNextLine() - Processing line number: 1430
  4727. -* NOTICE *- 21:50:34.180 - 33782952 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 30 on
  4728. -* NOTICE *- 21:50:34.181 - 33782992 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1430, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 30 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4729. -* NOTICE *- 21:50:34.181 - 33783068 - FormatCmdLine::GetNextLine() - Processing line number: 1431
  4730. -* NOTICE *- 21:50:34.181 - 33783100 - FormatCmdLine::GetNextLine() - Processing line: -SetClusterDisplay "Spike Window 1" "TT12" 31 on
  4731. -* NOTICE *- 21:50:34.181 - 33783140 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1431, Command Line: -SetClusterDisplay "Spike Window 1" "TT12" 31 on, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4732. -* NOTICE *- 21:50:34.181 - 33783212 - FormatCmdLine::GetNextLine() - Processing line number: 1432
  4733. -* NOTICE *- 21:50:34.181 - 33783248 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 0 0 1
  4734. -* NOTICE *- 21:50:34.181 - 33783284 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1432, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 0 0 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4735. -* NOTICE *- 21:50:34.188 - 33790648 - FormatCmdLine::GetNextLine() - Processing line number: 1433
  4736. -* NOTICE *- 21:50:34.188 - 33790688 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 0 -3000 32767 32767 -3000
  4737. -* NOTICE *- 21:50:34.188 - 33790720 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1433, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 0 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4738. -* NOTICE *- 21:50:34.188 - 33790820 - FormatCmdLine::GetNextLine() - Processing line number: 1434
  4739. -* NOTICE *- 21:50:34.188 - 33790848 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 1 0 2
  4740. -* NOTICE *- 21:50:34.188 - 33790888 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1434, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 1 0 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4741. -* NOTICE *- 21:50:34.189 - 33791000 - FormatCmdLine::GetNextLine() - Processing line number: 1435
  4742. -* NOTICE *- 21:50:34.189 - 33791036 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 1 -3000 32767 32767 -3000
  4743. -* NOTICE *- 21:50:34.189 - 33791068 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1435, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 1 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4744. -* NOTICE *- 21:50:34.189 - 33791168 - FormatCmdLine::GetNextLine() - Processing line number: 1436
  4745. -* NOTICE *- 21:50:34.189 - 33791200 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 2 0 3
  4746. -* NOTICE *- 21:50:34.189 - 33791228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1436, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 2 0 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4747. -* NOTICE *- 21:50:34.189 - 33791308 - FormatCmdLine::GetNextLine() - Processing line number: 1437
  4748. -* NOTICE *- 21:50:34.189 - 33791340 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 2 -3000 32767 32767 -3000
  4749. -* NOTICE *- 21:50:34.189 - 33791384 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1437, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 2 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4750. -* NOTICE *- 21:50:34.189 - 33791484 - FormatCmdLine::GetNextLine() - Processing line number: 1438
  4751. -* NOTICE *- 21:50:34.189 - 33791516 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 3 1 2
  4752. -* NOTICE *- 21:50:34.189 - 33791552 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1438, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 3 1 2, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4753. -* NOTICE *- 21:50:34.189 - 33791656 - FormatCmdLine::GetNextLine() - Processing line number: 1439
  4754. -* NOTICE *- 21:50:34.189 - 33791692 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 3 -3000 32767 32767 -3000
  4755. -* NOTICE *- 21:50:34.189 - 33791724 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1439, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 3 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4756. -* NOTICE *- 21:50:34.189 - 33791824 - FormatCmdLine::GetNextLine() - Processing line number: 1440
  4757. -* NOTICE *- 21:50:34.189 - 33791856 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 4 1 3
  4758. -* NOTICE *- 21:50:34.189 - 33791888 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1440, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 4 1 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4759. -* NOTICE *- 21:50:34.190 - 33792008 - FormatCmdLine::GetNextLine() - Processing line number: 1441
  4760. -* NOTICE *- 21:50:34.190 - 33792044 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 4 -3000 32767 32767 -3000
  4761. -* NOTICE *- 21:50:34.190 - 33792080 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1441, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 4 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4762. -* NOTICE *- 21:50:34.190 - 33792176 - FormatCmdLine::GetNextLine() - Processing line number: 1442
  4763. -* NOTICE *- 21:50:34.190 - 33792208 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotSources "Spike Window 1" "TT12" 5 2 3
  4764. -* NOTICE *- 21:50:34.190 - 33792244 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1442, Command Line: -SetFeaturePlotSources "Spike Window 1" "TT12" 5 2 3, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4765. -* NOTICE *- 21:50:34.190 - 33792344 - FormatCmdLine::GetNextLine() - Processing line number: 1443
  4766. -* NOTICE *- 21:50:34.190 - 33792376 - FormatCmdLine::GetNextLine() - Processing line: -SetFeaturePlotView "Spike Window 1" "TT12" 5 -3000 32767 32767 -3000
  4767. -* NOTICE *- 21:50:34.190 - 33792416 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1443, Command Line: -SetFeaturePlotView "Spike Window 1" "TT12" 5 -3000 32767 32767 -3000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4768. -* NOTICE *- 21:50:34.190 - 33792508 - FormatCmdLine::GetNextLine() - Processing line number: 1444
  4769. -* NOTICE *- 21:50:34.190 - 33792540 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowCurrentPlot "Spike Window 1" "TT9"
  4770. -* NOTICE *- 21:50:34.190 - 33792576 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1444, Command Line: -SetPlotWindowCurrentPlot "Spike Window 1" "TT9", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4771. -* NOTICE *- 21:50:34.191 - 33793476 - FormatCmdLine::GetNextLine() - Processing line number: 1445
  4772. -* NOTICE *- 21:50:34.191 - 33793512 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowMaximizeView "Spike Window 1" false
  4773. -* NOTICE *- 21:50:34.191 - 33793540 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1445, Command Line: -SetPlotWindowMaximizeView "Spike Window 1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4774. -* NOTICE *- 21:50:34.195 - 33797648 - FormatCmdLine::GetNextLine() - Processing line number: 1446
  4775. -* NOTICE *- 21:50:34.195 - 33797676 - FormatCmdLine::GetNextLine() - Processing line:
  4776. -* NOTICE *- 21:50:34.195 - 33797696 - FormatCmdLine::GetNextLine() - Processing line number: 1447
  4777. -* NOTICE *- 21:50:34.195 - 33797712 - FormatCmdLine::GetNextLine() - Processing line:
  4778. -* NOTICE *- 21:50:34.195 - 33797736 - FormatCmdLine::GetNextLine() - Processing line number: 1448
  4779. -* NOTICE *- 21:50:34.195 - 33797752 - FormatCmdLine::GetNextLine() - Processing line: # Plot Window Setup for Time Window 1
  4780. -* NOTICE *- 21:50:34.195 - 33797772 - FormatCmdLine::GetNextLine() - Processing line number: 1449
  4781. -* NOTICE *- 21:50:34.195 - 33797792 - FormatCmdLine::GetNextLine() - Processing line: -CreatePlotWindow Time "Time Window 1"
  4782. -* NOTICE *- 21:50:34.195 - 33797816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1449, Command Line: -CreatePlotWindow Time "Time Window 1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4783. -* NOTICE *- 21:50:34.230 - 33832088 - FormatCmdLine::GetNextLine() - Processing line number: 1450
  4784. -* NOTICE *- 21:50:34.230 - 33832120 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowSpreadType "Time Window 1" Spread
  4785. -* NOTICE *- 21:50:34.230 - 33832144 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1450, Command Line: -SetPlotWindowSpreadType "Time Window 1" Spread, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4786. -* NOTICE *- 21:50:34.230 - 33832344 - FormatCmdLine::GetNextLine() - Processing line number: 1451
  4787. -* NOTICE *- 21:50:34.230 - 33832372 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPlotType "Time Window 1" Sweep
  4788. -* NOTICE *- 21:50:34.230 - 33832396 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1451, Command Line: -SetPlotWindowPlotType "Time Window 1" Sweep, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4789. -* NOTICE *- 21:50:34.230 - 33832440 - FormatCmdLine::GetNextLine() - Processing line number: 1452
  4790. -* NOTICE *- 21:50:34.230 - 33832460 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowTimeframe "Time Window 1" 5000
  4791. -* NOTICE *- 21:50:34.230 - 33832484 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1452, Command Line: -SetPlotWindowTimeframe "Time Window 1" 5000, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4792. -* NOTICE *- 21:50:34.230 - 33832548 - FormatCmdLine::GetNextLine() - Processing line number: 1453
  4793. -* NOTICE *- 21:50:34.230 - 33832572 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowGridLines "Time Window 1" True
  4794. -* NOTICE *- 21:50:34.230 - 33832596 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1453, Command Line: -SetPlotWindowShowGridLines "Time Window 1" True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4795. -* NOTICE *- 21:50:34.230 - 33832636 - FormatCmdLine::GetNextLine() - Processing line number: 1454
  4796. -* NOTICE *- 21:50:34.230 - 33832656 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowPosition "Time Window 1" 1479 77 2322 990
  4797. -* NOTICE *- 21:50:34.230 - 33832696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1454, Command Line: -SetPlotWindowPosition "Time Window 1" 1479 77 2322 990, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4798. -* NOTICE *- 21:50:34.232 - 33834680 - FormatCmdLine::GetNextLine() - Processing line number: 1455
  4799. -* NOTICE *- 21:50:34.232 - 33834716 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowOverlay "Time Window 1" false
  4800. -* NOTICE *- 21:50:34.232 - 33834740 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1455, Command Line: -SetPlotWindowOverlay "Time Window 1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4801. -* NOTICE *- 21:50:34.232 - 33834784 - FormatCmdLine::GetNextLine() - Processing line number: 1456
  4802. -* NOTICE *- 21:50:34.232 - 33834804 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowShowTitleBar "Time Window 1" true
  4803. -* NOTICE *- 21:50:34.232 - 33834828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1456, Command Line: -SetPlotWindowShowTitleBar "Time Window 1" true, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4804. -* NOTICE *- 21:50:34.232 - 33834876 - FormatCmdLine::GetNextLine() - Processing line number: 1457
  4805. -* NOTICE *- 21:50:34.232 - 33834900 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowFrozen "Time Window 1" false
  4806. -* NOTICE *- 21:50:34.232 - 33834920 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1457, Command Line: -SetPlotWindowFrozen "Time Window 1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4807. -* NOTICE *- 21:50:34.233 - 33834960 - FormatCmdLine::GetNextLine() - Processing line number: 1458
  4808. -* NOTICE *- 21:50:34.233 - 33834984 - FormatCmdLine::GetNextLine() - Processing line: # Plot addition and setup for Time Window 1
  4809. -* NOTICE *- 21:50:34.233 - 33835004 - FormatCmdLine::GetNextLine() - Processing line number: 1459
  4810. -* NOTICE *- 21:50:34.233 - 33835024 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC1"
  4811. -* NOTICE *- 21:50:34.233 - 33835048 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1459, Command Line: -AddPlot "Time Window 1" "CSC1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4812. -* NOTICE *- 21:50:34.242 - 33844224 - FormatCmdLine::GetNextLine() - Processing line number: 1460
  4813. -* NOTICE *- 21:50:34.242 - 33844256 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC1" "True"
  4814. -* NOTICE *- 21:50:34.242 - 33844280 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1460, Command Line: -SetPlotEnabled "Time Window 1" "CSC1" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4815. -* NOTICE *- 21:50:34.242 - 33844328 - FormatCmdLine::GetNextLine() - Processing line number: 1461
  4816. -* NOTICE *- 21:50:34.242 - 33844348 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC1" 4
  4817. -* NOTICE *- 21:50:34.242 - 33844376 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1461, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4818. -* NOTICE *- 21:50:34.242 - 33844416 - FormatCmdLine::GetNextLine() - Processing line number: 1462
  4819. -* NOTICE *- 21:50:34.242 - 33844436 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC2"
  4820. -* NOTICE *- 21:50:34.242 - 33844460 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1462, Command Line: -AddPlot "Time Window 1" "CSC2", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4821. -* NOTICE *- 21:50:34.285 - 33887232 - FormatCmdLine::GetNextLine() - Processing line number: 1463
  4822. -* NOTICE *- 21:50:34.285 - 33887264 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC2" "True"
  4823. -* NOTICE *- 21:50:34.285 - 33887288 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1463, Command Line: -SetPlotEnabled "Time Window 1" "CSC2" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4824. -* NOTICE *- 21:50:34.285 - 33887344 - FormatCmdLine::GetNextLine() - Processing line number: 1464
  4825. -* NOTICE *- 21:50:34.285 - 33887368 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC2" 4
  4826. -* NOTICE *- 21:50:34.285 - 33887388 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1464, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC2" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4827. -* NOTICE *- 21:50:34.285 - 33887432 - FormatCmdLine::GetNextLine() - Processing line number: 1465
  4828. -* NOTICE *- 21:50:34.285 - 33887456 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC3"
  4829. -* NOTICE *- 21:50:34.285 - 33887480 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1465, Command Line: -AddPlot "Time Window 1" "CSC3", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4830. -* NOTICE *- 21:50:34.294 - 33896820 - FormatCmdLine::GetNextLine() - Processing line number: 1466
  4831. -* NOTICE *- 21:50:34.294 - 33896848 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC3" "True"
  4832. -* NOTICE *- 21:50:34.294 - 33896872 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1466, Command Line: -SetPlotEnabled "Time Window 1" "CSC3" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4833. -* NOTICE *- 21:50:34.294 - 33896924 - FormatCmdLine::GetNextLine() - Processing line number: 1467
  4834. -* NOTICE *- 21:50:34.294 - 33896944 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC3" 4
  4835. -* NOTICE *- 21:50:34.295 - 33896972 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1467, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC3" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4836. -* NOTICE *- 21:50:34.295 - 33897020 - FormatCmdLine::GetNextLine() - Processing line number: 1468
  4837. -* NOTICE *- 21:50:34.295 - 33897040 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC4"
  4838. -* NOTICE *- 21:50:34.295 - 33897064 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1468, Command Line: -AddPlot "Time Window 1" "CSC4", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4839. -* NOTICE *- 21:50:34.348 - 33950808 - FormatCmdLine::GetNextLine() - Processing line number: 1469
  4840. -* NOTICE *- 21:50:34.348 - 33950840 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC4" "True"
  4841. -* NOTICE *- 21:50:34.348 - 33950864 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1469, Command Line: -SetPlotEnabled "Time Window 1" "CSC4" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4842. -* NOTICE *- 21:50:34.348 - 33950916 - FormatCmdLine::GetNextLine() - Processing line number: 1470
  4843. -* NOTICE *- 21:50:34.348 - 33950936 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC4" 4
  4844. -* NOTICE *- 21:50:34.349 - 33950960 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1470, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC4" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4845. -* NOTICE *- 21:50:34.349 - 33951008 - FormatCmdLine::GetNextLine() - Processing line number: 1471
  4846. -* NOTICE *- 21:50:34.349 - 33951028 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC5"
  4847. -* NOTICE *- 21:50:34.349 - 33951052 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1471, Command Line: -AddPlot "Time Window 1" "CSC5", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4848. -* NOTICE *- 21:50:34.382 - 33984556 - FormatCmdLine::GetNextLine() - Processing line number: 1472
  4849. -* NOTICE *- 21:50:34.382 - 33984588 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC5" "True"
  4850. -* NOTICE *- 21:50:34.382 - 33984612 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1472, Command Line: -SetPlotEnabled "Time Window 1" "CSC5" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4851. -* NOTICE *- 21:50:34.382 - 33984664 - FormatCmdLine::GetNextLine() - Processing line number: 1473
  4852. -* NOTICE *- 21:50:34.382 - 33984684 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC5" 4
  4853. -* NOTICE *- 21:50:34.382 - 33984708 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1473, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC5" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4854. -* NOTICE *- 21:50:34.382 - 33984752 - FormatCmdLine::GetNextLine() - Processing line number: 1474
  4855. -* NOTICE *- 21:50:34.382 - 33984772 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC6"
  4856. -* NOTICE *- 21:50:34.382 - 33984796 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1474, Command Line: -AddPlot "Time Window 1" "CSC6", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4857. -* NOTICE *- 21:50:34.396 - 33998604 - FormatCmdLine::GetNextLine() - Processing line number: 1475
  4858. -* NOTICE *- 21:50:34.396 - 33998636 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC6" "True"
  4859. -* NOTICE *- 21:50:34.396 - 33998660 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1475, Command Line: -SetPlotEnabled "Time Window 1" "CSC6" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4860. -* NOTICE *- 21:50:34.396 - 33998708 - FormatCmdLine::GetNextLine() - Processing line number: 1476
  4861. -* NOTICE *- 21:50:34.396 - 33998728 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC6" 4
  4862. -* NOTICE *- 21:50:34.396 - 33998752 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1476, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC6" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4863. -* NOTICE *- 21:50:34.396 - 33998796 - FormatCmdLine::GetNextLine() - Processing line number: 1477
  4864. -* NOTICE *- 21:50:34.396 - 33998816 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC7"
  4865. -* NOTICE *- 21:50:34.396 - 33998840 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1477, Command Line: -AddPlot "Time Window 1" "CSC7", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4866. -* NOTICE *- 21:50:34.423 - 34025160 - FormatCmdLine::GetNextLine() - Processing line number: 1478
  4867. -* NOTICE *- 21:50:34.423 - 34025192 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC7" "True"
  4868. -* NOTICE *- 21:50:34.423 - 34025216 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1478, Command Line: -SetPlotEnabled "Time Window 1" "CSC7" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4869. -* NOTICE *- 21:50:34.423 - 34025264 - FormatCmdLine::GetNextLine() - Processing line number: 1479
  4870. -* NOTICE *- 21:50:34.423 - 34025288 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC7" 4
  4871. -* NOTICE *- 21:50:34.423 - 34025308 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1479, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC7" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4872. -* NOTICE *- 21:50:34.423 - 34025360 - FormatCmdLine::GetNextLine() - Processing line number: 1480
  4873. -* NOTICE *- 21:50:34.423 - 34025380 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC8"
  4874. -* NOTICE *- 21:50:34.423 - 34025404 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1480, Command Line: -AddPlot "Time Window 1" "CSC8", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4875. -* NOTICE *- 21:50:34.453 - 34055760 - FormatCmdLine::GetNextLine() - Processing line number: 1481
  4876. -* NOTICE *- 21:50:34.453 - 34055792 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC8" "True"
  4877. -* NOTICE *- 21:50:34.453 - 34055816 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1481, Command Line: -SetPlotEnabled "Time Window 1" "CSC8" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4878. -* NOTICE *- 21:50:34.453 - 34055864 - FormatCmdLine::GetNextLine() - Processing line number: 1482
  4879. -* NOTICE *- 21:50:34.453 - 34055888 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC8" 4
  4880. -* NOTICE *- 21:50:34.453 - 34055912 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1482, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC8" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4881. -* NOTICE *- 21:50:34.454 - 34055960 - FormatCmdLine::GetNextLine() - Processing line number: 1483
  4882. -* NOTICE *- 21:50:34.454 - 34055980 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC9"
  4883. -* NOTICE *- 21:50:34.454 - 34056004 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1483, Command Line: -AddPlot "Time Window 1" "CSC9", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4884. -* NOTICE *- 21:50:34.482 - 34083992 - FormatCmdLine::GetNextLine() - Processing line number: 1484
  4885. -* NOTICE *- 21:50:34.482 - 34084024 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC9" "True"
  4886. -* NOTICE *- 21:50:34.482 - 34084048 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1484, Command Line: -SetPlotEnabled "Time Window 1" "CSC9" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4887. -* NOTICE *- 21:50:34.482 - 34084096 - FormatCmdLine::GetNextLine() - Processing line number: 1485
  4888. -* NOTICE *- 21:50:34.482 - 34084120 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC9" 4
  4889. -* NOTICE *- 21:50:34.482 - 34084656 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1485, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC9" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4890. -* NOTICE *- 21:50:34.482 - 34084708 - FormatCmdLine::GetNextLine() - Processing line number: 1486
  4891. -* NOTICE *- 21:50:34.482 - 34084724 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC10"
  4892. -* NOTICE *- 21:50:34.482 - 34084748 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1486, Command Line: -AddPlot "Time Window 1" "CSC10", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4893. -* NOTICE *- 21:50:34.496 - 34098920 - FormatCmdLine::GetNextLine() - Processing line number: 1487
  4894. -* NOTICE *- 21:50:34.496 - 34098948 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC10" "True"
  4895. -* NOTICE *- 21:50:34.497 - 34098976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1487, Command Line: -SetPlotEnabled "Time Window 1" "CSC10" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4896. -* NOTICE *- 21:50:34.497 - 34099028 - FormatCmdLine::GetNextLine() - Processing line number: 1488
  4897. -* NOTICE *- 21:50:34.497 - 34099052 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC10" 4
  4898. -* NOTICE *- 21:50:34.497 - 34099076 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1488, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC10" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4899. -* NOTICE *- 21:50:34.497 - 34099124 - FormatCmdLine::GetNextLine() - Processing line number: 1489
  4900. -* NOTICE *- 21:50:34.497 - 34099144 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC11"
  4901. -* NOTICE *- 21:50:34.497 - 34099168 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1489, Command Line: -AddPlot "Time Window 1" "CSC11", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4902. -* NOTICE *- 21:50:34.538 - 34140012 - FormatCmdLine::GetNextLine() - Processing line number: 1490
  4903. -* NOTICE *- 21:50:34.538 - 34140048 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC11" "True"
  4904. -* NOTICE *- 21:50:34.538 - 34140072 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1490, Command Line: -SetPlotEnabled "Time Window 1" "CSC11" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4905. -* NOTICE *- 21:50:34.538 - 34140148 - FormatCmdLine::GetNextLine() - Processing line number: 1491
  4906. -* NOTICE *- 21:50:34.538 - 34140176 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC11" 4
  4907. -* NOTICE *- 21:50:34.538 - 34140196 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1491, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC11" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4908. -* NOTICE *- 21:50:34.538 - 34140244 - FormatCmdLine::GetNextLine() - Processing line number: 1492
  4909. -* NOTICE *- 21:50:34.538 - 34140264 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSC12"
  4910. -* NOTICE *- 21:50:34.538 - 34140288 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1492, Command Line: -AddPlot "Time Window 1" "CSC12", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4911. -* NOTICE *- 21:50:34.564 - 34166944 - FormatCmdLine::GetNextLine() - Processing line number: 1493
  4912. -* NOTICE *- 21:50:34.565 - 34166984 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSC12" "True"
  4913. -* NOTICE *- 21:50:34.565 - 34167008 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1493, Command Line: -SetPlotEnabled "Time Window 1" "CSC12" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4914. -* NOTICE *- 21:50:34.565 - 34167060 - FormatCmdLine::GetNextLine() - Processing line number: 1494
  4915. -* NOTICE *- 21:50:34.565 - 34167080 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSC12" 4
  4916. -* NOTICE *- 21:50:34.565 - 34167104 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1494, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSC12" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4917. -* NOTICE *- 21:50:34.565 - 34167160 - FormatCmdLine::GetNextLine() - Processing line number: 1495
  4918. -* NOTICE *- 21:50:34.565 - 34167184 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSCR1"
  4919. -* NOTICE *- 21:50:34.565 - 34167208 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1495, Command Line: -AddPlot "Time Window 1" "CSCR1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4920. -* NOTICE *- 21:50:34.579 - 34181700 - FormatCmdLine::GetNextLine() - Processing line number: 1496
  4921. -* NOTICE *- 21:50:34.579 - 34181728 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSCR1" "True"
  4922. -* NOTICE *- 21:50:34.579 - 34181756 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1496, Command Line: -SetPlotEnabled "Time Window 1" "CSCR1" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4923. -* NOTICE *- 21:50:34.579 - 34181812 - FormatCmdLine::GetNextLine() - Processing line number: 1497
  4924. -* NOTICE *- 21:50:34.579 - 34181832 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSCR1" 4
  4925. -* NOTICE *- 21:50:34.579 - 34181856 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1497, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSCR1" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4926. -* NOTICE *- 21:50:34.579 - 34181904 - FormatCmdLine::GetNextLine() - Processing line number: 1498
  4927. -* NOTICE *- 21:50:34.579 - 34181924 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotLabel "Time Window 1" "CSCR1" "HS1R1"
  4928. -* NOTICE *- 21:50:34.579 - 34181948 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1498, Command Line: -SetPlotLabel "Time Window 1" "CSCR1" "HS1R1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4929. -* NOTICE *- 21:50:34.580 - 34182240 - FormatCmdLine::GetNextLine() - Processing line number: 1499
  4930. -* NOTICE *- 21:50:34.580 - 34182264 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSCR2"
  4931. -* NOTICE *- 21:50:34.580 - 34182288 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1499, Command Line: -AddPlot "Time Window 1" "CSCR2", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4932. -* NOTICE *- 21:50:34.607 - 34209444 - FormatCmdLine::GetNextLine() - Processing line number: 1500
  4933. -* NOTICE *- 21:50:34.607 - 34209476 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSCR2" "True"
  4934. -* NOTICE *- 21:50:34.607 - 34209504 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1500, Command Line: -SetPlotEnabled "Time Window 1" "CSCR2" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4935. -* NOTICE *- 21:50:34.607 - 34209560 - FormatCmdLine::GetNextLine() - Processing line number: 1501
  4936. -* NOTICE *- 21:50:34.607 - 34209580 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSCR2" 4
  4937. -* NOTICE *- 21:50:34.607 - 34209600 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1501, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSCR2" 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4938. -* NOTICE *- 21:50:34.607 - 34209660 - FormatCmdLine::GetNextLine() - Processing line number: 1502
  4939. -* NOTICE *- 21:50:34.607 - 34209684 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotLabel "Time Window 1" "CSCR2" "HS2R1"
  4940. -* NOTICE *- 21:50:34.607 - 34209708 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1502, Command Line: -SetPlotLabel "Time Window 1" "CSCR2" "HS2R1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4941. -* NOTICE *- 21:50:34.607 - 34209900 - FormatCmdLine::GetNextLine() - Processing line number: 1503
  4942. -* NOTICE *- 21:50:34.607 - 34209924 - FormatCmdLine::GetNextLine() - Processing line: -AddPlot "Time Window 1" "CSCHc"
  4943. -* NOTICE *- 21:50:34.607 - 34209948 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1503, Command Line: -AddPlot "Time Window 1" "CSCHc", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4944. -* NOTICE *- 21:50:34.621 - 34223932 - FormatCmdLine::GetNextLine() - Processing line number: 1504
  4945. -* NOTICE *- 21:50:34.622 - 34223964 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotEnabled "Time Window 1" "CSCHc" "True"
  4946. -* NOTICE *- 21:50:34.622 - 34224100 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1504, Command Line: -SetPlotEnabled "Time Window 1" "CSCHc" "True", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4947. -* NOTICE *- 21:50:34.622 - 34224160 - FormatCmdLine::GetNextLine() - Processing line number: 1505
  4948. -* NOTICE *- 21:50:34.622 - 34224180 - FormatCmdLine::GetNextLine() - Processing line: -SetTimePlotZoomFactor "Time Window 1" "CSCHc" 1
  4949. -* NOTICE *- 21:50:34.622 - 34224204 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1505, Command Line: -SetTimePlotZoomFactor "Time Window 1" "CSCHc" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4950. -* NOTICE *- 21:50:34.622 - 34224252 - FormatCmdLine::GetNextLine() - Processing line number: 1506
  4951. -* NOTICE *- 21:50:34.622 - 34224272 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotLabel "Time Window 1" "CSCHc" "CA1 LFP"
  4952. -* NOTICE *- 21:50:34.622 - 34224296 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1506, Command Line: -SetPlotLabel "Time Window 1" "CSCHc" "CA1 LFP", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4953. -* NOTICE *- 21:50:34.622 - 34224500 - FormatCmdLine::GetNextLine() - Processing line number: 1507
  4954. -* NOTICE *- 21:50:34.622 - 34224524 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowCurrentPlot "Time Window 1" "CSCR1"
  4955. -* NOTICE *- 21:50:34.622 - 34224548 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1507, Command Line: -SetPlotWindowCurrentPlot "Time Window 1" "CSCR1", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4956. -* NOTICE *- 21:50:34.623 - 34225728 - FormatCmdLine::GetNextLine() - Processing line number: 1508
  4957. -* NOTICE *- 21:50:34.623 - 34225756 - FormatCmdLine::GetNextLine() - Processing line: -SetPlotWindowMaximizeView "Time Window 1" false
  4958. -* NOTICE *- 21:50:34.623 - 34225780 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1508, Command Line: -SetPlotWindowMaximizeView "Time Window 1" false, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4959. -* NOTICE *- 21:50:34.636 - 34238848 - FormatCmdLine::GetNextLine() - Processing line number: 1509
  4960. -* NOTICE *- 21:50:34.636 - 34238880 - FormatCmdLine::GetNextLine() - Processing line:
  4961. -* NOTICE *- 21:50:34.636 - 34238900 - FormatCmdLine::GetNextLine() - Processing line number: 1510
  4962. -* NOTICE *- 21:50:34.636 - 34238916 - FormatCmdLine::GetNextLine() - Processing line:
  4963. -* NOTICE *- 21:50:34.636 - 34238936 - FormatCmdLine::GetNextLine() - Processing line number: 1511
  4964. -* NOTICE *- 21:50:34.636 - 34238952 - FormatCmdLine::GetNextLine() - Processing line: #Audio Output Dialog Setup
  4965. -* NOTICE *- 21:50:34.637 - 34238980 - FormatCmdLine::GetNextLine() - Processing line number: 1512
  4966. -* NOTICE *- 21:50:34.637 - 34238996 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition Audio 824 78
  4967. -* NOTICE *- 21:50:34.637 - 34239020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1512, Command Line: -SetDialogPosition Audio 824 78, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4968. -* NOTICE *- 21:50:34.637 - 34239236 - FormatCmdLine::GetNextLine() - Processing line number: 1513
  4969. -* NOTICE *- 21:50:34.637 - 34239264 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible Audio True
  4970. -* NOTICE *- 21:50:34.637 - 34239292 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1513, Command Line: -SetDialogVisible Audio True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4971. -* NOTICE *- 21:50:34.645 - 34247284 - FormatCmdLine::GetNextLine() - Processing line number: 1514
  4972. -* NOTICE *- 21:50:34.645 - 34247316 - FormatCmdLine::GetNextLine() - Processing line:
  4973. -* NOTICE *- 21:50:34.645 - 34247340 - FormatCmdLine::GetNextLine() - Processing line number: 1515
  4974. -* NOTICE *- 21:50:34.645 - 34247360 - FormatCmdLine::GetNextLine() - Processing line:
  4975. -* NOTICE *- 21:50:34.645 - 34247380 - FormatCmdLine::GetNextLine() - Processing line number: 1516
  4976. -* NOTICE *- 21:50:34.645 - 34247400 - FormatCmdLine::GetNextLine() - Processing line: #TTL Response Dialog Setup
  4977. -* NOTICE *- 21:50:34.645 - 34247420 - FormatCmdLine::GetNextLine() - Processing line number: 1517
  4978. -* NOTICE *- 21:50:34.645 - 34247440 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogPosition TTLResponse 0 332
  4979. -* NOTICE *- 21:50:34.645 - 34247464 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1517, Command Line: -SetDialogPosition TTLResponse 0 332, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4980. -* NOTICE *- 21:50:34.645 - 34247644 - FormatCmdLine::GetNextLine() - Processing line number: 1518
  4981. -* NOTICE *- 21:50:34.645 - 34247672 - FormatCmdLine::GetNextLine() - Processing line: -SetDialogVisible TTLResponse False
  4982. -* NOTICE *- 21:50:34.645 - 34247696 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1518, Command Line: -SetDialogVisible TTLResponse False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4983. -* NOTICE *- 21:50:34.645 - 34247736 - FormatCmdLine::GetNextLine() - Processing line number: 1519
  4984. -* NOTICE *- 21:50:34.645 - 34247756 - FormatCmdLine::GetNextLine() - Processing line:
  4985. -* NOTICE *- 21:50:34.645 - 34247776 - FormatCmdLine::GetNextLine() - Processing line number: 1520
  4986. -* NOTICE *- 21:50:34.645 - 34247792 - FormatCmdLine::GetNextLine() - Processing line:
  4987. -* NOTICE *- 21:50:34.645 - 34247812 - FormatCmdLine::GetNextLine() - Processing line number: 1521
  4988. -* NOTICE *- 21:50:34.645 - 34247832 - FormatCmdLine::GetNextLine() - Processing line: #Audio Device Setup for Primary Sound Driver
  4989. -* NOTICE *- 21:50:34.645 - 34247852 - FormatCmdLine::GetNextLine() - Processing line number: 1522
  4990. -* NOTICE *- 21:50:34.645 - 34247872 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "Primary Sound Driver" Left "TT9"
  4991. -* NOTICE *- 21:50:34.645 - 34247896 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1522, Command Line: -SetAudioSource "Primary Sound Driver" Left "TT9", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4992. -* NOTICE *- 21:50:34.654 - 34256132 - FormatCmdLine::GetNextLine() - Processing line number: 1523
  4993. -* NOTICE *- 21:50:34.654 - 34256164 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Left 0 True
  4994. -* NOTICE *- 21:50:34.654 - 34256192 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1523, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Left 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4995. -* NOTICE *- 21:50:34.654 - 34256244 - FormatCmdLine::GetNextLine() - Processing line number: 1524
  4996. -* NOTICE *- 21:50:34.654 - 34256268 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Left 1 True
  4997. -* NOTICE *- 21:50:34.654 - 34256292 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1524, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Left 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  4998. -* NOTICE *- 21:50:34.654 - 34256336 - FormatCmdLine::GetNextLine() - Processing line number: 1525
  4999. -* NOTICE *- 21:50:34.654 - 34256356 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Left 2 True
  5000. -* NOTICE *- 21:50:34.654 - 34256380 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1525, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Left 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5001. -* NOTICE *- 21:50:34.654 - 34256424 - FormatCmdLine::GetNextLine() - Processing line number: 1526
  5002. -* NOTICE *- 21:50:34.654 - 34256444 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Left 3 True
  5003. -* NOTICE *- 21:50:34.654 - 34256468 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1526, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Left 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5004. -* NOTICE *- 21:50:34.654 - 34256512 - FormatCmdLine::GetNextLine() - Processing line number: 1527
  5005. -* NOTICE *- 21:50:34.654 - 34256532 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "Primary Sound Driver" Left 100
  5006. -* NOTICE *- 21:50:34.654 - 34256556 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1527, Command Line: -SetAudioVolume "Primary Sound Driver" Left 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5007. -* NOTICE *- 21:50:34.654 - 34256604 - FormatCmdLine::GetNextLine() - Processing line number: 1528
  5008. -* NOTICE *- 21:50:34.654 - 34256624 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "Primary Sound Driver" Left Off
  5009. -* NOTICE *- 21:50:34.654 - 34256648 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1528, Command Line: -SetAudioMute "Primary Sound Driver" Left Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5010. -* NOTICE *- 21:50:34.659 - 34261460 - FormatCmdLine::GetNextLine() - Processing line number: 1529
  5011. -* NOTICE *- 21:50:34.659 - 34261484 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "Primary Sound Driver" Right "TT9"
  5012. -* NOTICE *- 21:50:34.659 - 34261508 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1529, Command Line: -SetAudioSource "Primary Sound Driver" Right "TT9", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5013. -* NOTICE *- 21:50:34.668 - 34270200 - FormatCmdLine::GetNextLine() - Processing line number: 1530
  5014. -* NOTICE *- 21:50:34.668 - 34270232 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Right 0 True
  5015. -* NOTICE *- 21:50:34.668 - 34270260 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1530, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Right 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5016. -* NOTICE *- 21:50:34.668 - 34270308 - FormatCmdLine::GetNextLine() - Processing line number: 1531
  5017. -* NOTICE *- 21:50:34.668 - 34270328 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Right 1 True
  5018. -* NOTICE *- 21:50:34.668 - 34270352 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1531, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Right 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5019. -* NOTICE *- 21:50:34.668 - 34270396 - FormatCmdLine::GetNextLine() - Processing line number: 1532
  5020. -* NOTICE *- 21:50:34.668 - 34270416 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Right 2 True
  5021. -* NOTICE *- 21:50:34.668 - 34270440 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1532, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Right 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5022. -* NOTICE *- 21:50:34.668 - 34270484 - FormatCmdLine::GetNextLine() - Processing line number: 1533
  5023. -* NOTICE *- 21:50:34.668 - 34270504 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioStreamEnabled "Primary Sound Driver" Right 3 True
  5024. -* NOTICE *- 21:50:34.668 - 34270528 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1533, Command Line: -SetAudioStreamEnabled "Primary Sound Driver" Right 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5025. -* NOTICE *- 21:50:34.668 - 34270572 - FormatCmdLine::GetNextLine() - Processing line number: 1534
  5026. -* NOTICE *- 21:50:34.668 - 34270592 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "Primary Sound Driver" Right 100
  5027. -* NOTICE *- 21:50:34.668 - 34270616 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1534, Command Line: -SetAudioVolume "Primary Sound Driver" Right 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5028. -* NOTICE *- 21:50:34.668 - 34270664 - FormatCmdLine::GetNextLine() - Processing line number: 1535
  5029. -* NOTICE *- 21:50:34.668 - 34270688 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "Primary Sound Driver" Right Off
  5030. -* NOTICE *- 21:50:34.668 - 34270708 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1535, Command Line: -SetAudioMute "Primary Sound Driver" Right Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5031. -* NOTICE *- 21:50:34.668 - 34270756 - FormatCmdLine::GetNextLine() - Processing line number: 1536
  5032. -* NOTICE *- 21:50:34.668 - 34270780 - FormatCmdLine::GetNextLine() - Processing line:
  5033. -* NOTICE *- 21:50:34.668 - 34270800 - FormatCmdLine::GetNextLine() - Processing line number: 1537
  5034. -* NOTICE *- 21:50:34.668 - 34270816 - FormatCmdLine::GetNextLine() - Processing line:
  5035. -* NOTICE *- 21:50:34.668 - 34270836 - FormatCmdLine::GetNextLine() - Processing line number: 1538
  5036. -* NOTICE *- 21:50:34.668 - 34270856 - FormatCmdLine::GetNextLine() - Processing line: #Audio Device Setup for AcqSystem1_Audio0
  5037. -* NOTICE *- 21:50:34.668 - 34270876 - FormatCmdLine::GetNextLine() - Processing line number: 1539
  5038. -* NOTICE *- 21:50:34.668 - 34270896 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "AcqSystem1_Audio0" Left "None"
  5039. -* NOTICE *- 21:50:34.668 - 34270920 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1539, Command Line: -SetAudioSource "AcqSystem1_Audio0" Left "None", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5040. -* NOTICE *- 21:50:34.669 - 34270972 - FormatCmdLine::GetNextLine() - Processing line number: 1540
  5041. -* NOTICE *- 21:50:34.669 - 34270996 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "AcqSystem1_Audio0" Left 100
  5042. -* NOTICE *- 21:50:34.669 - 34271020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1540, Command Line: -SetAudioVolume "AcqSystem1_Audio0" Left 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5043. -* NOTICE *- 21:50:58.090 - 57668756 - FormatCmdLine::GetNextLine() - Processing line number: 1541
  5044. -* NOTICE *- 21:50:58.090 - 57668800 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "AcqSystem1_Audio0" Left Off
  5045. -* NOTICE *- 21:50:58.090 - 57668828 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1541, Command Line: -SetAudioMute "AcqSystem1_Audio0" Left Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5046. -* NOTICE *- 21:50:58.230 - 57808932 - FormatCmdLine::GetNextLine() - Processing line number: 1542
  5047. -* NOTICE *- 21:50:58.230 - 57808964 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "AcqSystem1_Audio0" Right "None"
  5048. -* NOTICE *- 21:50:58.230 - 57808992 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1542, Command Line: -SetAudioSource "AcqSystem1_Audio0" Right "None", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5049. -* NOTICE *- 21:50:58.230 - 57809048 - FormatCmdLine::GetNextLine() - Processing line number: 1543
  5050. -* NOTICE *- 21:50:58.230 - 57809072 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "AcqSystem1_Audio0" Right 100
  5051. -* NOTICE *- 21:50:58.230 - 57809100 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1543, Command Line: -SetAudioVolume "AcqSystem1_Audio0" Right 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5052. -* NOTICE *- 21:50:58.390 - 57969160 - FormatCmdLine::GetNextLine() - Processing line number: 1544
  5053. -* NOTICE *- 21:50:58.390 - 57969196 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "AcqSystem1_Audio0" Right Off
  5054. -* NOTICE *- 21:50:58.390 - 57969220 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1544, Command Line: -SetAudioMute "AcqSystem1_Audio0" Right Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5055. -* NOTICE *- 21:50:58.530 - 58109372 - FormatCmdLine::GetNextLine() - Processing line number: 1545
  5056. -* NOTICE *- 21:50:58.530 - 58109400 - FormatCmdLine::GetNextLine() - Processing line:
  5057. -* NOTICE *- 21:50:58.530 - 58109424 - FormatCmdLine::GetNextLine() - Processing line number: 1546
  5058. -* NOTICE *- 21:50:58.530 - 58109444 - FormatCmdLine::GetNextLine() - Processing line:
  5059. -* NOTICE *- 21:50:58.530 - 58109464 - FormatCmdLine::GetNextLine() - Processing line number: 1547
  5060. -* NOTICE *- 21:50:58.530 - 58109480 - FormatCmdLine::GetNextLine() - Processing line: #Audio Device Setup for AcqSystem1_Audio1
  5061. -* NOTICE *- 21:50:58.530 - 58109500 - FormatCmdLine::GetNextLine() - Processing line number: 1548
  5062. -* NOTICE *- 21:50:58.530 - 58109520 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "AcqSystem1_Audio1" Left "None"
  5063. -* NOTICE *- 21:50:58.530 - 58109544 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1548, Command Line: -SetAudioSource "AcqSystem1_Audio1" Left "None", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5064. -* NOTICE *- 21:50:58.530 - 58109596 - FormatCmdLine::GetNextLine() - Processing line number: 1549
  5065. -* NOTICE *- 21:50:58.530 - 58109620 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "AcqSystem1_Audio1" Left 100
  5066. -* NOTICE *- 21:50:58.530 - 58109640 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1549, Command Line: -SetAudioVolume "AcqSystem1_Audio1" Left 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5067. -* NOTICE *- 21:50:58.671 - 58250172 - FormatCmdLine::GetNextLine() - Processing line number: 1550
  5068. -* NOTICE *- 21:50:58.671 - 58250204 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "AcqSystem1_Audio1" Left Off
  5069. -* NOTICE *- 21:50:58.671 - 58250228 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1550, Command Line: -SetAudioMute "AcqSystem1_Audio1" Left Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5070. -* NOTICE *- 21:50:58.832 - 58409820 - FormatCmdLine::GetNextLine() - Processing line number: 1551
  5071. -* NOTICE *- 21:50:58.832 - 58409852 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioSource "AcqSystem1_Audio1" Right "None"
  5072. -* NOTICE *- 21:50:58.832 - 58409876 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1551, Command Line: -SetAudioSource "AcqSystem1_Audio1" Right "None", Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5073. -* NOTICE *- 21:50:58.832 - 58409932 - FormatCmdLine::GetNextLine() - Processing line number: 1552
  5074. -* NOTICE *- 21:50:58.832 - 58409952 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioVolume "AcqSystem1_Audio1" Right 100
  5075. -* NOTICE *- 21:50:58.832 - 58409976 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1552, Command Line: -SetAudioVolume "AcqSystem1_Audio1" Right 100, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5076. -* NOTICE *- 21:50:58.972 - 58550060 - FormatCmdLine::GetNextLine() - Processing line number: 1553
  5077. -* NOTICE *- 21:50:58.972 - 58550092 - FormatCmdLine::GetNextLine() - Processing line: -SetAudioMute "AcqSystem1_Audio1" Right Off
  5078. -* NOTICE *- 21:50:58.972 - 58550124 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1553, Command Line: -SetAudioMute "AcqSystem1_Audio1" Right Off, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5079. -* NOTICE *- 21:50:59.132 - 58710284 - FormatCmdLine::GetNextLine() - Processing line number: 1554
  5080. -* NOTICE *- 21:50:59.132 - 58710316 - FormatCmdLine::GetNextLine() - Processing line:
  5081. -* NOTICE *- 21:50:59.132 - 58710336 - FormatCmdLine::GetNextLine() - Processing line number: 1555
  5082. -* NOTICE *- 21:50:59.132 - 58710356 - FormatCmdLine::GetNextLine() - Processing line:
  5083. -* NOTICE *- 21:50:59.132 - 58710376 - FormatCmdLine::GetNextLine() - Processing line number: 1556
  5084. -* NOTICE *- 21:50:59.132 - 58710396 - FormatCmdLine::GetNextLine() - Processing line: #Digital IO Device Creation and Setup for: AcqSystem1_0
  5085. -* NOTICE *- 21:50:59.132 - 58710420 - FormatCmdLine::GetNextLine() - Processing line number: 1557
  5086. -* NOTICE *- 21:50:59.132 - 58710440 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortDirection "AcqSystem1_0" 0 Output
  5087. -* NOTICE *- 21:50:59.132 - 58710464 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1557, Command Line: -SetDigitalIOPortDirection "AcqSystem1_0" 0 Output, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5088. -* NOTICE *- 21:50:59.275 - 58853404 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 0, Direction: Output.
  5089. -* NOTICE *- 21:50:59.275 - 58853444 - FormatCmdLine::GetNextLine() - Processing line number: 1558
  5090. -* NOTICE *- 21:50:59.275 - 58853464 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortValue "AcqSystem1_0" 0 0
  5091. -* NOTICE *- 21:50:59.275 - 58853488 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1558, Command Line: -SetDigitalIOPortValue "AcqSystem1_0" 0 0, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5092. -* NOTICE *- 21:50:59.433 - 59010756 - FormatCmdLine::GetNextLine() - Processing line number: 1559
  5093. -* NOTICE *- 21:50:59.433 - 59010788 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 0 False
  5094. -* NOTICE *- 21:50:59.433 - 59010820 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1559, Command Line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 0 False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5095. -* NOTICE *- 21:50:59.433 - 59010872 - FormatCmdLine::GetNextLine() - Processing line number: 1560
  5096. -* NOTICE *- 21:50:59.433 - 59010892 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 0 True
  5097. -* NOTICE *- 21:50:59.433 - 59010916 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1560, Command Line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 0 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5098. -* NOTICE *- 21:50:59.433 - 59010984 - FormatCmdLine::GetNextLine() - Processing line number: 1561
  5099. -* NOTICE *- 21:50:59.433 - 59011004 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPulseDuration "AcqSystem1_0" 0 15
  5100. -* NOTICE *- 21:50:59.433 - 59011028 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1561, Command Line: -SetDigitalIOPulseDuration "AcqSystem1_0" 0 15, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5101. -* NOTICE *- 21:50:59.573 - 59150964 - FormatCmdLine::GetNextLine() - Processing line number: 1562
  5102. -* NOTICE *- 21:50:59.573 - 59150996 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortDirection "AcqSystem1_0" 1 Output
  5103. -* NOTICE *- 21:50:59.573 - 59151020 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1562, Command Line: -SetDigitalIOPortDirection "AcqSystem1_0" 1 Output, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5104. -* NOTICE *- 21:50:59.718 - 59296060 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 1, Direction: Output.
  5105. -* NOTICE *- 21:50:59.718 - 59296100 - FormatCmdLine::GetNextLine() - Processing line number: 1563
  5106. -* NOTICE *- 21:50:59.718 - 59296120 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortValue "AcqSystem1_0" 1 4
  5107. -* NOTICE *- 21:50:59.718 - 59296144 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1563, Command Line: -SetDigitalIOPortValue "AcqSystem1_0" 1 4, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5108. -* NOTICE *- 21:50:59.874 - 59451420 - FormatCmdLine::GetNextLine() - Processing line number: 1564
  5109. -* NOTICE *- 21:50:59.874 - 59451448 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 1 False
  5110. -* NOTICE *- 21:50:59.874 - 59451476 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1564, Command Line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 1 False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5111. -* NOTICE *- 21:50:59.874 - 59451528 - FormatCmdLine::GetNextLine() - Processing line number: 1565
  5112. -* NOTICE *- 21:50:59.874 - 59451548 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 1 True
  5113. -* NOTICE *- 21:50:59.874 - 59451572 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1565, Command Line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 1 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5114. -* NOTICE *- 21:50:59.874 - 59451620 - FormatCmdLine::GetNextLine() - Processing line number: 1566
  5115. -* NOTICE *- 21:50:59.874 - 59451640 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPulseDuration "AcqSystem1_0" 1 15
  5116. -* NOTICE *- 21:50:59.874 - 59451664 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1566, Command Line: -SetDigitalIOPulseDuration "AcqSystem1_0" 1 15, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5117. -* NOTICE *- 21:51:00.014 - 59591616 - FormatCmdLine::GetNextLine() - Processing line number: 1567
  5118. -* NOTICE *- 21:51:00.014 - 59591648 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortDirection "AcqSystem1_0" 2 Input
  5119. -* NOTICE *- 21:51:00.014 - 59591672 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1567, Command Line: -SetDigitalIOPortDirection "AcqSystem1_0" 2 Input, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5120. -* NOTICE *- 21:51:00.175 - 59752328 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 2, Direction: Input.
  5121. -* NOTICE *- 21:51:00.175 - 59752364 - FormatCmdLine::GetNextLine() - Processing line number: 1568
  5122. -* NOTICE *- 21:51:00.175 - 59752384 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 2 False
  5123. -* NOTICE *- 21:51:00.175 - 59752408 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1568, Command Line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 2 False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5124. -* NOTICE *- 21:51:00.175 - 59752456 - FormatCmdLine::GetNextLine() - Processing line number: 1569
  5125. -* NOTICE *- 21:51:00.175 - 59752476 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 2 True
  5126. -* NOTICE *- 21:51:00.175 - 59752500 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1569, Command Line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 2 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5127. -* NOTICE *- 21:51:00.175 - 59752552 - FormatCmdLine::GetNextLine() - Processing line number: 1570
  5128. -* NOTICE *- 21:51:00.175 - 59752572 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPulseDuration "AcqSystem1_0" 2 15
  5129. -* NOTICE *- 21:51:00.175 - 59752592 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1570, Command Line: -SetDigitalIOPulseDuration "AcqSystem1_0" 2 15, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5130. -* NOTICE *- 21:51:00.315 - 59892092 - FormatCmdLine::GetNextLine() - Processing line number: 1571
  5131. -* NOTICE *- 21:51:00.315 - 59892124 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPortDirection "AcqSystem1_0" 3 Input
  5132. -* NOTICE *- 21:51:00.315 - 59892148 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1571, Command Line: -SetDigitalIOPortDirection "AcqSystem1_0" 3 Input, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5133. -* NOTICE *- 21:51:00.476 - 60052796 - DigitalIOLynxSX::SetDigitalIOPortDirection() - Digital IO port direction set successfully for device AcqSystem1_0. BoardNumber: 0, Port: 3, Direction: Input.
  5134. -* NOTICE *- 21:51:00.476 - 60052836 - FormatCmdLine::GetNextLine() - Processing line number: 1572
  5135. -* NOTICE *- 21:51:00.476 - 60052856 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 3 False
  5136. -* NOTICE *- 21:51:00.476 - 60052880 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1572, Command Line: -SetDigitalIOUseStrobeBit "AcqSystem1_0" 3 False, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5137. -* NOTICE *- 21:51:00.476 - 60052928 - FormatCmdLine::GetNextLine() - Processing line number: 1573
  5138. -* NOTICE *- 21:51:00.476 - 60052948 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 3 True
  5139. -* NOTICE *- 21:51:00.476 - 60052972 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1573, Command Line: -SetDigitalIOEventsEnabled "AcqSystem1_0" 3 True, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5140. -* NOTICE *- 21:51:00.476 - 60053020 - FormatCmdLine::GetNextLine() - Processing line number: 1574
  5141. -* NOTICE *- 21:51:00.476 - 60053040 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOPulseDuration "AcqSystem1_0" 3 15
  5142. -* NOTICE *- 21:51:00.476 - 60053060 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1574, Command Line: -SetDigitalIOPulseDuration "AcqSystem1_0" 3 15, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5143. -* NOTICE *- 21:51:00.615 - 60192548 - FormatCmdLine::GetNextLine() - Processing line number: 1575
  5144. -* NOTICE *- 21:51:00.616 - 60193220 - FormatCmdLine::GetNextLine() - Processing line: -SetDigitalIOInputScanDelay "AcqSystem1_0" 1
  5145. -* NOTICE *- 21:51:00.616 - 60193244 - ConfigFileProcessor::ProcessScript() - Next Ascii Command to Process. Line Number: 1575, Command Line: -SetDigitalIOInputScanDelay "AcqSystem1_0" 1, Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5146. -* NOTICE *- 21:51:00.616 - 60193292 - FormatCmdLine::GetNextLine() - Processing line number: 1576
  5147. -* NOTICE *- 21:51:00.616 - 60193312 - FormatCmdLine::GetNextLine() - Processing line:
  5148. -* NOTICE *- 21:51:00.616 - 60193332 - FormatCmdLine::GetNextLine() - Processing line number: 1577
  5149. -* NOTICE *- 21:51:00.616 - 60193348 - FormatCmdLine::GetNextLine() - Processing line: #Spike TTL setup for AcqSystem1_0
  5150. -* NOTICE *- 21:51:00.616 - 60193368 - FormatCmdLine::GetNextLine() - Processing line number: 1578
  5151. -* NOTICE *- 21:51:00.616 - 60193388 - FormatCmdLine::GetNextLine() - Processing line:
  5152. -* NOTICE *- 21:51:00.616 - 60193408 - FormatCmdLine::GetNextLine() - Processing line number: 1579
  5153. -* NOTICE *- 21:51:00.616 - 60193424 - FormatCmdLine::GetNextLine() - Processing line:
  5154. -* NOTICE *- 21:51:00.616 - 60193448 - FormatCmdLine::GetNextLine() - Processing line number: 1580
  5155. -* NOTICE *- 21:51:00.616 - 60193468 - FormatCmdLine::GetNextLine() - Processing line: #Spike TTL setup for AcqSystem1_0
  5156. -* NOTICE *- 21:51:00.616 - 60193488 - FormatCmdLine::GetNextLine() - Processing line number: 1581
  5157. -* NOTICE *- 21:51:00.616 - 60193504 - FormatCmdLine::GetNextLine() - Processing line:
  5158. -* NOTICE *- 21:51:00.616 - 60193524 - FormatCmdLine::GetNextLine() - Processing line number: 1582
  5159. -* NOTICE *- 21:51:00.616 - 60193540 - FormatCmdLine::GetNextLine() - Processing line:
  5160. -* NOTICE *- 21:51:00.616 - 60193568 - FormatCmdLine::GetLineFromFile() - The end of the file has been reached.
  5161. -* NOTICE *- 21:51:00.616 - 60193596 - ConfigFileProcessor::ProcessScript() - Finished Processing Filename: N:\richarga\rats\Ivanov (22703)\cfg\Cheetah_2016-11-27_16-20-48.cfg
  5162. -* NOTICE *- 21:51:00.617 - 60194396 - NetComServer::InitializeServer() - Attempting to initialize Message Server. portNumber: 26100
  5163. -* NOTICE *- 21:51:00.617 - 60194424 - NetComServer::InitializeServer() - Attempting to create Server Socket. portNumber: 26100
  5164. -* NOTICE *- 21:51:00.617 - 60194488 - NetComServer::InitializeServer() - Server Socket created successfully. portNumber: 26100
  5165. -* NOTICE *- 21:51:00.617 - 60194512 - NetComServer::InitializeServer() - Attempting to bind Server Socket. portNumber: 26100
  5166. -* NOTICE *- 21:51:00.617 - 60194592 - NetComServer::InitializeServer() - Attempt to bind Server Socket was successful. portNumber: 26100
  5167. -* NOTICE *- 21:51:00.617 - 60194616 - NetComServer::InitializeServer() - Attempting to listen to socket. portNumber: 26100
  5168. -* NOTICE *- 21:51:00.617 - 60194708 - NetComServer::InitializeServer() - Attempt to listen to socket was successful. portNumber: 26100
  5169. -* NOTICE *- 21:51:00.617 - 60194728 - Attempting to create a new thread to wait for an incoming connection.
  5170. -* NOTICE *- 21:51:00.618 - 60195028 - Creation of new thread to wait for an incoming connection was successful
  5171. -* NOTICE *- 21:51:00.618 - 60195084 - NetComServer::InitializeServer() - Attempt to initialize Message Server was successful. portNumber: 26100
  5172. -* NOTICE *- 21:51:17.960 - 77519576 - DRSController::SendDRSCommand() - DRS Command(b1 hsp 1 ) about to be sent.
  5173. -* NOTICE *- 21:51:17.960 - 77519704 - DRSController::SendDRSCommand() - DRS Command(b3 hsp 1 ) about to be sent.
  5174. -* NOTICE *- 21:51:17.960 - 77519760 - DRSController::SendDRSCommand() - DRS Command(b5 hsp 1 ) about to be sent.
  5175. -* NOTICE *- 21:51:17.960 - 77519808 - DRSController::SendDRSCommand() - DRS Command(b7 hsp 1 ) about to be sent.
  5176. -* NOTICE *- 21:51:19.018 - 171427616 - AcquisitionControl::StartAcquisition() - Acquisition Started
  5177. -* NOTICE *- 21:52:23.629 - 235982922 - MULTI-SELECT in use. Selected Items: TT1 TT2 TT3 TT4 TT5 TT6 TT7 TT8 TT9 TT10 TT11 TT12
  5178. -* NOTICE *- 21:52:23.629 - 235983603 - MULTI-SELECT in use. Selected Items: TT1 TT2 TT3 TT4 TT5 TT6 TT7 TT8 TT9 TT10 TT11 TT12
  5179. -* NOTICE *- 21:52:28.290 - 240640264 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT4
  5180. -* NOTICE *- 21:52:28.290 - 240640347 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT4
  5181. -* NOTICE *- 21:52:28.290 - 240640409 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT4
  5182. -* NOTICE *- 21:52:28.290 - 240640497 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT4
  5183. -* NOTICE *- 21:52:32.227 - 244574090 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT4
  5184. -* NOTICE *- 21:52:32.227 - 244574169 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT4
  5185. -* NOTICE *- 21:52:32.227 - 244574225 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT4
  5186. -* NOTICE *- 21:52:32.227 - 244574289 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT4
  5187. -* NOTICE *- 21:52:37.130 - 249472005 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT4
  5188. -* NOTICE *- 21:52:37.130 - 249472084 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT4
  5189. -* NOTICE *- 21:52:37.131 - 249472145 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT4
  5190. -* NOTICE *- 21:52:37.131 - 249472452 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT4
  5191. -* NOTICE *- 21:52:40.588 - 252927073 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT6
  5192. -* NOTICE *- 21:52:40.588 - 252927156 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT6
  5193. -* NOTICE *- 21:52:40.588 - 252927218 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT6
  5194. -* NOTICE *- 21:52:40.588 - 252927275 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT6
  5195. -* NOTICE *- 21:53:23.916 - 296215450 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT1
  5196. -* NOTICE *- 21:53:23.916 - 296215530 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT1
  5197. -* NOTICE *- 21:53:23.916 - 296215590 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT1
  5198. -* NOTICE *- 21:53:23.916 - 296215644 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT1
  5199. -* NOTICE *- 21:53:30.233 - 302527049 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 0. AE Name: TT1
  5200. -* NOTICE *- 21:53:30.234 - 302528409 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 1. AE Name: TT1
  5201. -* NOTICE *- 21:53:30.234 - 302528474 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 2. AE Name: TT1
  5202. -* NOTICE *- 21:53:30.234 - 302528688 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 40 µV for sub channel 3. AE Name: TT1
  5203. -* NOTICE *- 21:53:34.665 - 306955990 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 0. AE Name: TT3
  5204. -* NOTICE *- 21:53:34.665 - 306956076 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 1. AE Name: TT3
  5205. -* NOTICE *- 21:53:34.665 - 306956137 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 2. AE Name: TT3
  5206. -* NOTICE *- 21:53:34.665 - 306956193 - ADAcqEntSpike::SetThreshold() - Threshold value changed to 45 µV for sub channel 3. AE Name: TT3
  5207. -* NOTICE *- 21:54:26.267 - 358537874 - AcquisitionControl::StartRecording() - Recording Started
  5208. -* NOTICE *- 22:04:07.583 - 939746187 - MULTI-SELECT in use. Selected Items: CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1 CSCR2 CSCHc
  5209. -* NOTICE *- 22:04:07.584 - 939746956 - MULTI-SELECT in use. Selected Items: CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1 CSCR2 CSCHc
  5210. -* NOTICE *- 22:04:18.214 - 950376820 - MULTI-SELECT in use. Selected Items: TT5 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1
  5211. -* NOTICE *- 22:04:18.214 - 950377029 - MULTI-SELECT in use. Selected Items: TT5 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1
  5212. -* NOTICE *- 22:04:18.217 - 950379555 - MULTI-SELECT in use. Selected Items: TT5 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1
  5213. -* NOTICE *- 22:04:18.217 - 950379740 - MULTI-SELECT in use. Selected Items: TT5 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12 CSCR1
  5214. -* NOTICE *- 22:04:18.225 - 950387219 - MULTI-SELECT in use. Selected Items: TT11 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12
  5215. -* NOTICE *- 22:04:18.225 - 950387398 - MULTI-SELECT in use. Selected Items: TT11 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12
  5216. -* NOTICE *- 22:04:18.228 - 950390301 - MULTI-SELECT in use. Selected Items: TT11 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12
  5217. -* NOTICE *- 22:04:18.228 - 950390472 - MULTI-SELECT in use. Selected Items: TT11 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11 CSC12
  5218. -* NOTICE *- 22:05:37.522 - 1029684411 - MULTI-SELECT in use. Selected Items: TT12 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11
  5219. -* NOTICE *- 22:05:37.523 - 1029684608 - MULTI-SELECT in use. Selected Items: TT12 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11
  5220. -* NOTICE *- 22:05:37.530 - 1029691934 - MULTI-SELECT in use. Selected Items: TT12 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11
  5221. -* NOTICE *- 22:05:37.530 - 1029692098 - MULTI-SELECT in use. Selected Items: TT12 CSC1 CSC2 CSC3 CSC4 CSC5 CSC6 CSC7 CSC8 CSC9 CSC10 CSC11
  5222. -* NOTICE *- 22:14:19.473 - 1551632868 - AcquisitionControl::StopRecording() - Recording Stopped
  5223. -* NOTICE *- 22:14:19.473 - 1551632925 - ErrorContainer::LogErrorCounts() - Current Error Counts. AD Record STX: 0, AD Record ID: 0, AD Record Size: 0, AD Record Data STX: 0, AD Record ETX: 0, AD Record CRC: 0, Timestamp Incrementing: 0, AD Records Lost: 0, DMA Sequencing: 0, DMA: 0, Filter: 0, Video: 0, Events: 0, Disk: 0, NetCom: 0, Display: 0, Vertex: 0
  5224. -* NOTICE *- 22:21:08.403 - 1960560725 - MULTI-SELECT in use. Selected Items: TT1 TT2 TT3 TT4 TT5 TT6 TT7 TT8 TT9 TT10 TT11 TT12
  5225. -* NOTICE *- 22:21:08.404 - 1960561429 - MULTI-SELECT in use. Selected Items: TT1 TT2 TT3 TT4 TT5 TT6 TT7 TT8 TT9 TT10 TT11 TT12
  5226. -* NOTICE *- 22:39:37.417 - 3069569001 - AcquisitionControl::StartRecording() - Recording Started
  5227. -* NOTICE *- 22:39:40.850 - 3073002307 - AcquisitionControl::StopRecording() - Recording Stopped
  5228. -* NOTICE *- 22:39:40.850 - 3073002366 - ErrorContainer::LogErrorCounts() - Current Error Counts. AD Record STX: 0, AD Record ID: 0, AD Record Size: 0, AD Record Data STX: 0, AD Record ETX: 0, AD Record CRC: 0, Timestamp Incrementing: 0, AD Records Lost: 0, DMA Sequencing: 0, DMA: 0, Filter: 0, Video: 0, Events: 0, Disk: 0, NetCom: 0, Display: 0, Vertex: 0
  5229. -* NOTICE *- 22:39:49.689 - 3081840785 - DRSController::SendDRSCommand() - DRS Command(b1 hsp 0 ) about to be sent.
  5230. -* NOTICE *- 22:39:49.689 - 3081840875 - DRSController::SendDRSCommand() - DRS Command(b3 hsp 0 ) about to be sent.
  5231. -* NOTICE *- 22:39:49.689 - 3081840928 - DRSController::SendDRSCommand() - DRS Command(b5 hsp 0 ) about to be sent.
  5232. -* NOTICE *- 22:39:49.689 - 3081840976 - DRSController::SendDRSCommand() - DRS Command(b7 hsp 0 ) about to be sent.
  5233. -* NOTICE *- 22:39:49.689 - 3081841076 - HardwareSubSysLynxSX::StopAcquisition() - DmaBuffersReceived: 829994, Data Sections Lost: 0. Sub System Name: AcqSystem1
  5234. -* NOTICE *- 22:39:49.778 - 3081930224 - AcquisitionControl::StopAcquisition() - Acquisition Stopped
  5235. -* NOTICE *- 22:39:49.778 - 3081930268 - ErrorContainer::LogErrorCounts() - Current Error Counts. AD Record STX: 0, AD Record ID: 0, AD Record Size: 0, AD Record Data STX: 0, AD Record ETX: 0, AD Record CRC: 0, Timestamp Incrementing: 0, AD Records Lost: 0, DMA Sequencing: 0, DMA: 0, Filter: 0, Video: 0, Events: 0, Disk: 0, NetCom: 0, Display: 0, Vertex: 0
  5236. -* NOTICE *- 22:44:41.090 - 3373221903 - MiscFunctions::ShutdownThread() - WaitForSingleObject for FilterProcessing thread completed successfully.
  5237. -* NOTICE *- 22:44:41.091 - 3373222831 - MiscFunctions::ShutdownThread() - WaitForSingleObject for FilterProcessing thread completed successfully.
  5238. -* NOTICE *- 22:44:41.092 - 3373223759 - MiscFunctions::ShutdownThread() - WaitForSingleObject for FilterProcessing thread completed successfully.
  5239. -* NOTICE *- 22:44:41.092 - 3373223791 - DspFilterContainer::ShutdownContainer() - The DSP filer container has been shutdown successfully.
  5240. -* NOTICE *- 22:44:41.092 - 3373223823 - NetComServer::ShutdownServer() - mMsgServerThread thread has been terminated successfully.
  5241. -* NOTICE *- 22:44:41.092 - 3373223919 - NetComServer::ShutdownServer() - WaitForSingleObject for mMsgServerThread thread completed successfully.
  5242. -* NOTICE *- 22:44:41.092 - 3373224047 - NetComServer::CloseMessageConnection() - Attempting to close socket for message server connection
  5243. -* NOTICE *- 22:44:41.092 - 3373224111 - NetComServer::CloseMessageConnection() - Attempt to close socket for message server connection was successful
  5244. -* NOTICE *- 22:44:41.093 - 3373225103 - DisplayPlotContainer::ShutdownPlotContainer() - WaitForSingleObject for mCscProcessing thread completed successfully.
  5245. -* NOTICE *- 22:44:41.093 - 3373225167 - DisplayPlotContainer::ShutdownPlotContainer() - WaitForSingleObject for mSeProcessing thread completed successfully.
  5246. -* NOTICE *- 22:44:41.093 - 3373225199 - DisplayPlotContainer::ShutdownPlotContainer() - WaitForSingleObject for mStProcessing thread completed successfully.
  5247. -* NOTICE *- 22:44:41.093 - 3373225231 - DisplayPlotContainer::ShutdownPlotContainer() - WaitForSingleObject for mTtProcessing thread completed successfully.
  5248. -* NOTICE *- 22:44:41.093 - 3373225263 - DisplayPlotContainer::ShutdownPlotContainer() - WaitForSingleObject for mEvProcessing thread completed successfully.
  5249. -* NOTICE *- 22:44:41.093 - 3373225263 - DisplayPlotContainer::ShutdownPlotContainer() - The display plot container has been shutdown successfully.
  5250. -* NOTICE *- 22:44:41.142 - 3373273775 - DisplayWindowContainer::ShutdownContainer() - WaitForSingleObject for mDrawingThread thread completed successfully.
  5251. -* NOTICE *- 22:44:41.142 - 3373273839 - DisplayWindowContainer::ShutdownContainer() - The display window container has been shutdown successfully.
  5252. -* NOTICE *- 22:44:41.142 - 3373273839 - AudioOutputContainer::ShutDownContainer() - The audio output container has been shutdown successfully.
  5253. -* NOTICE *- 22:44:41.149 - 3373280719 - ADAcqEntContainer::ShutdownContainer() - The acquisition entity container has been shutdown successfully.
  5254. -* NOTICE *- 22:44:41.150 - 3373281775 - HardwareSubSys::ShutdownSubSys() - WaitForSingleObject for mDmaProcessor thread completed successfully. Sub System Name: AcqSystem1
  5255. -* NOTICE *- 22:44:41.151 - 3373282799 - MiscFunctions::ShutdownThread() - WaitForSingleObject for RawDataFileWriter thread completed successfully.
  5256. -* NOTICE *- 22:44:41.151 - 3373282863 - MiscFunctions::ShutdownThread() - UDPDataProcessing thread has been terminated successfully.
  5257. -* NOTICE *- 22:44:41.151 - 3373282959 - MiscFunctions::ShutdownThread() - WaitForSingleObject for UDPDataProcessing thread completed successfully.
  5258. -* NOTICE *- 22:44:41.151 - 3373283023 - MiscFunctions::ShutdownThread() - UDPByteSwapProcessing thread has been terminated successfully.
  5259. -* NOTICE *- 22:44:41.151 - 3373283119 - MiscFunctions::ShutdownThread() - WaitForSingleObject for UDPByteSwapProcessing thread completed successfully.
  5260. -* NOTICE *- 22:44:41.151 - 3373283183 - HardwareSubSysContainer::ShutdownContainer() - The hardware sub system container has been shutdown successfully.
  5261. -* NOTICE *- 22:44:41.206 - 3373337775 - VideoTrackerAcqEnt::Shutdown() - WaitForSingleObject for mSocketRBProcessing thread completed successfully.
  5262. -* NOTICE *- 22:44:41.207 - 3373338863 - VideoTrackerContainer::ShutdownContainer() - The video tracker container has been shutdown successfully.
  5263. -* NOTICE *- 22:44:41.505 - 3373637583 - VideoCaptureDeviceDirectShow::BuildFrameGrabberStream() - VT1 successfully built the frame grabber stream.
  5264. -* NOTICE *- 22:44:41.523 - 3373654799 - VideoCaptureDeviceDirectShow::BuildPreviewStream() - VT1 (Hauppauge WinTV 885 Video Capture) preview stream successfully built.
  5265. -* NOTICE *- 22:44:41.525 - 3373656687 - VideoCaptureDeviceContainer::ShutdownContainer() - The video capture device container has been shutdown successfully.
  5266. -* NOTICE *- 22:44:41.526 - 3373657807 - MiscFunctions::ShutdownThread() - WaitForSingleObject for EventRingBufferProcessing thread completed successfully.
  5267. -* NOTICE *- 22:44:41.537 - 3373669039 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5268. -* NOTICE *- 22:44:41.538 - 3373669775 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5269. -* NOTICE *- 22:44:41.539 - 3373670767 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5270. -* NOTICE *- 22:44:41.540 - 3373671791 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5271. -* NOTICE *- 22:44:41.541 - 3373672783 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5272. -* NOTICE *- 22:44:41.542 - 3373673775 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5273. -* NOTICE *- 22:44:41.543 - 3373674799 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5274. -* NOTICE *- 22:44:41.544 - 3373675791 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5275. -* NOTICE *- 22:44:41.545 - 3373676783 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5276. -* NOTICE *- 22:44:41.546 - 3373677775 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5277. -* NOTICE *- 22:44:41.547 - 3373678767 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5278. -* NOTICE *- 22:44:41.548 - 3373679759 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5279. -* NOTICE *- 22:44:41.549 - 3373680783 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5280. -* NOTICE *- 22:44:41.550 - 3373681775 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5281. -* NOTICE *- 22:44:41.551 - 3373682799 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.
  5282. -* NOTICE *- 22:44:41.552 - 3373683791 - MiscFunctions::ShutdownThread() - WaitForSingleObject for DataFileWriteScheduler thread completed successfully.