Csound Csound-dev Csound-tekno Search About

[Csnd] file doesn't run in csoundqt

Date2013-03-23 14:56
FromStefan Thomas
Subject[Csnd] file doesn't run in csoundqt
Dear community,
the following file does not run within csoundqt.
But I can run it, without problems, when I run it from vim.
How can I get it working in csoundqt?
Here are the csd-file, the definitions and the "score":

<CsoundSynthesizer>
<CsOptions>
-odac -m0d
</CsOptions>
; ==============================================
<CsInstruments>

sr    =    44100
ksmps     =     100
nchnls    =    2
0dbfs    =    1
gisine ftgen 0,0,2^10, 10, 1
instr 1
    iamp    = p4
    icps    = cpspch(p5)
    iatt     = 0.01
    idec    = p3-iatt
    aenv    linseg  0, iatt, 1, idec, 0
    asig     poscil    iamp*aenv, icps, gisine
  
    outs    asig, asig
   
endin

</CsInstruments>
; ==============================================
<CsScore>
#include "./definitions.inc"
#include "./testscore.inc"
</CsScore>
</CsoundSynthesizer>

; definitions

#define     c     #7.00#
#define     d     #7.02#
#define     e     #7.04#
#define     f     #7.05#
#define     g     #7.07#
#define     a     #7.9#
#define     h     #7.10#

; SCORE
/* testscore.inc */
i1 0 1 0.1 $c






Date2013-03-23 14:58
FromSteven Yi
SubjectRe: [Csnd] file doesn't run in csoundqt
Have you tried it without the includes?  And in what way does it "not run"?

On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
 wrote:
> Dear community,
> the following file does not run within csoundqt.
> But I can run it, without problems, when I run it from vim.
> How can I get it working in csoundqt?
> Here are the csd-file, the definitions and the "score":
>
> 
> 
> -odac -m0d
> 
> ; ==============================================
> 
>
> sr    =    44100
> ksmps     =     100
> nchnls    =    2
> 0dbfs    =    1
> gisine ftgen 0,0,2^10, 10, 1
> instr 1
>     iamp    = p4
>     icps    = cpspch(p5)
>     iatt     = 0.01
>     idec    = p3-iatt
>     aenv    linseg  0, iatt, 1, idec, 0
>     asig     poscil    iamp*aenv, icps, gisine
>
>     outs    asig, asig
>
> endin
>
> 
> ; ==============================================
> 
> #include "./definitions.inc"
> #include "./testscore.inc"
> 
> 
>
> ; definitions
>
> #define     c     #7.00#
> #define     d     #7.02#
> #define     e     #7.04#
> #define     f     #7.05#
> #define     g     #7.07#
> #define     a     #7.9#
> #define     h     #7.10#
>
> ; SCORE
> /* testscore.inc */
> i1 0 1 0.1 $c
>
>
>
>
>

Date2013-03-23 15:01
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
It runs without includes,if everything is in one single file.

2013/3/23 Steven Yi <stevenyi@gmail.com>
Have you tried it without the includes?  And in what way does it "not run"?

On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
<kontrapunktstefan@gmail.com> wrote:
> Dear community,
> the following file does not run within csoundqt.
> But I can run it, without problems, when I run it from vim.
> How can I get it working in csoundqt?
> Here are the csd-file, the definitions and the "score":
>
> <CsoundSynthesizer>
> <CsOptions>
> -odac -m0d
> </CsOptions>
> ; ==============================================
> <CsInstruments>
>
> sr    =    44100
> ksmps     =     100
> nchnls    =    2
> 0dbfs    =    1
> gisine ftgen 0,0,2^10, 10, 1
> instr 1
>     iamp    = p4
>     icps    = cpspch(p5)
>     iatt     = 0.01
>     idec    = p3-iatt
>     aenv    linseg  0, iatt, 1, idec, 0
>     asig     poscil    iamp*aenv, icps, gisine
>
>     outs    asig, asig
>
> endin
>
> </CsInstruments>
> ; ==============================================
> <CsScore>
> #include "./definitions.inc"
> #include "./testscore.inc"
> </CsScore>
> </CsoundSynthesizer>
>
> ; definitions
>
> #define     c     #7.00#
> #define     d     #7.02#
> #define     e     #7.04#
> #define     f     #7.05#
> #define     g     #7.07#
> #define     a     #7.9#
> #define     h     #7.10#
>
> ; SCORE
> /* testscore.inc */
> i1 0 1 0.1 $c
>
>
>
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-03-23 15:05
FromSteven Yi
SubjectRe: [Csnd] file doesn't run in csoundqt
Seems like maybe there is a path resolution problem for includes when
run within CsoundQT?  I thought Csound resolved files from the
location of the CSD, but maybe it's doing it from the current working
directory.

On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
 wrote:
> It runs without includes,if everything is in one single file.
>
> 2013/3/23 Steven Yi 
>>
>> Have you tried it without the includes?  And in what way does it "not
>> run"?
>>
>> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>>  wrote:
>> > Dear community,
>> > the following file does not run within csoundqt.
>> > But I can run it, without problems, when I run it from vim.
>> > How can I get it working in csoundqt?
>> > Here are the csd-file, the definitions and the "score":
>> >
>> > 
>> > 
>> > -odac -m0d
>> > 
>> > ; ==============================================
>> > 
>> >
>> > sr    =    44100
>> > ksmps     =     100
>> > nchnls    =    2
>> > 0dbfs    =    1
>> > gisine ftgen 0,0,2^10, 10, 1
>> > instr 1
>> >     iamp    = p4
>> >     icps    = cpspch(p5)
>> >     iatt     = 0.01
>> >     idec    = p3-iatt
>> >     aenv    linseg  0, iatt, 1, idec, 0
>> >     asig     poscil    iamp*aenv, icps, gisine
>> >
>> >     outs    asig, asig
>> >
>> > endin
>> >
>> > 
>> > ; ==============================================
>> > 
>> > #include "./definitions.inc"
>> > #include "./testscore.inc"
>> > 
>> > 
>> >
>> > ; definitions
>> >
>> > #define     c     #7.00#
>> > #define     d     #7.02#
>> > #define     e     #7.04#
>> > #define     f     #7.05#
>> > #define     g     #7.07#
>> > #define     a     #7.9#
>> > #define     h     #7.10#
>> >
>> > ; SCORE
>> > /* testscore.inc */
>> > i1 0 1 0.1 $c
>> >
>> >
>> >
>> >
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>

Date2013-03-23 17:03
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
Could it be possible that one of the reasons is caused by
/* testscore.inc */  ?

2013/3/23 Steven Yi <stevenyi@gmail.com>
Seems like maybe there is a path resolution problem for includes when
run within CsoundQT?  I thought Csound resolved files from the
location of the CSD, but maybe it's doing it from the current working
directory.

On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
<kontrapunktstefan@gmail.com> wrote:
> It runs without includes,if everything is in one single file.
>
> 2013/3/23 Steven Yi <stevenyi@gmail.com>
>>
>> Have you tried it without the includes?  And in what way does it "not
>> run"?
>>
>> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>> <kontrapunktstefan@gmail.com> wrote:
>> > Dear community,
>> > the following file does not run within csoundqt.
>> > But I can run it, without problems, when I run it from vim.
>> > How can I get it working in csoundqt?
>> > Here are the csd-file, the definitions and the "score":
>> >
>> > <CsoundSynthesizer>
>> > <CsOptions>
>> > -odac -m0d
>> > </CsOptions>
>> > ; ==============================================
>> > <CsInstruments>
>> >
>> > sr    =    44100
>> > ksmps     =     100
>> > nchnls    =    2
>> > 0dbfs    =    1
>> > gisine ftgen 0,0,2^10, 10, 1
>> > instr 1
>> >     iamp    = p4
>> >     icps    = cpspch(p5)
>> >     iatt     = 0.01
>> >     idec    = p3-iatt
>> >     aenv    linseg  0, iatt, 1, idec, 0
>> >     asig     poscil    iamp*aenv, icps, gisine
>> >
>> >     outs    asig, asig
>> >
>> > endin
>> >
>> > </CsInstruments>
>> > ; ==============================================
>> > <CsScore>
>> > #include "./definitions.inc"
>> > #include "./testscore.inc"
>> > </CsScore>
>> > </CsoundSynthesizer>
>> >
>> > ; definitions
>> >
>> > #define     c     #7.00#
>> > #define     d     #7.02#
>> > #define     e     #7.04#
>> > #define     f     #7.05#
>> > #define     g     #7.07#
>> > #define     a     #7.9#
>> > #define     h     #7.10#
>> >
>> > ; SCORE
>> > /* testscore.inc */
>> > i1 0 1 0.1 $c
>> >
>> >
>> >
>> >
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-03-23 17:08
FromSteven Yi
SubjectRe: [Csnd] file doesn't run in csoundqt
That doesn't seem like something that would cause a problem.  However,
could you try changing the includes to this:

#include "definitions.inc"
#include "testscore.inc"

without the ./ ?  I wonder if that would change things.

steven

On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
 wrote:
> Could it be possible that one of the reasons is caused by
>>
>> /* testscore.inc */  ?
>
>
> 2013/3/23 Steven Yi 
>>
>> Seems like maybe there is a path resolution problem for includes when
>> run within CsoundQT?  I thought Csound resolved files from the
>> location of the CSD, but maybe it's doing it from the current working
>> directory.
>>
>> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>>  wrote:
>> > It runs without includes,if everything is in one single file.
>> >
>> > 2013/3/23 Steven Yi 
>> >>
>> >> Have you tried it without the includes?  And in what way does it "not
>> >> run"?
>> >>
>> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>> >>  wrote:
>> >> > Dear community,
>> >> > the following file does not run within csoundqt.
>> >> > But I can run it, without problems, when I run it from vim.
>> >> > How can I get it working in csoundqt?
>> >> > Here are the csd-file, the definitions and the "score":
>> >> >
>> >> > 
>> >> > 
>> >> > -odac -m0d
>> >> > 
>> >> > ; ==============================================
>> >> > 
>> >> >
>> >> > sr    =    44100
>> >> > ksmps     =     100
>> >> > nchnls    =    2
>> >> > 0dbfs    =    1
>> >> > gisine ftgen 0,0,2^10, 10, 1
>> >> > instr 1
>> >> >     iamp    = p4
>> >> >     icps    = cpspch(p5)
>> >> >     iatt     = 0.01
>> >> >     idec    = p3-iatt
>> >> >     aenv    linseg  0, iatt, 1, idec, 0
>> >> >     asig     poscil    iamp*aenv, icps, gisine
>> >> >
>> >> >     outs    asig, asig
>> >> >
>> >> > endin
>> >> >
>> >> > 
>> >> > ; ==============================================
>> >> > 
>> >> > #include "./definitions.inc"
>> >> > #include "./testscore.inc"
>> >> > 
>> >> > 
>> >> >
>> >> > ; definitions
>> >> >
>> >> > #define     c     #7.00#
>> >> > #define     d     #7.02#
>> >> > #define     e     #7.04#
>> >> > #define     f     #7.05#
>> >> > #define     g     #7.07#
>> >> > #define     a     #7.9#
>> >> > #define     h     #7.10#
>> >> >
>> >> > ; SCORE
>> >> > /* testscore.inc */
>> >> > i1 0 1 0.1 $c
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >> Send bugs reports to the Sourceforge bug tracker
>> >>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> >> Discussions of bugs and features can be posted here
>> >> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>> >> "unsubscribe
>> >> csound"
>> >>
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>

Date2013-03-23 17:13
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
This makes no difference.
I've read in the list, that including a file, where score macros are defined, is a problem.

2013/3/23 Steven Yi <stevenyi@gmail.com>
That doesn't seem like something that would cause a problem.  However,
could you try changing the includes to this:

#include "definitions.inc"
#include "testscore.inc"

without the ./ ?  I wonder if that would change things.

steven

On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
<kontrapunktstefan@gmail.com> wrote:
> Could it be possible that one of the reasons is caused by
>>
>> /* testscore.inc */  ?
>
>
> 2013/3/23 Steven Yi <stevenyi@gmail.com>
>>
>> Seems like maybe there is a path resolution problem for includes when
>> run within CsoundQT?  I thought Csound resolved files from the
>> location of the CSD, but maybe it's doing it from the current working
>> directory.
>>
>> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>> <kontrapunktstefan@gmail.com> wrote:
>> > It runs without includes,if everything is in one single file.
>> >
>> > 2013/3/23 Steven Yi <stevenyi@gmail.com>
>> >>
>> >> Have you tried it without the includes?  And in what way does it "not
>> >> run"?
>> >>
>> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>> >> <kontrapunktstefan@gmail.com> wrote:
>> >> > Dear community,
>> >> > the following file does not run within csoundqt.
>> >> > But I can run it, without problems, when I run it from vim.
>> >> > How can I get it working in csoundqt?
>> >> > Here are the csd-file, the definitions and the "score":
>> >> >
>> >> > <CsoundSynthesizer>
>> >> > <CsOptions>
>> >> > -odac -m0d
>> >> > </CsOptions>
>> >> > ; ==============================================
>> >> > <CsInstruments>
>> >> >
>> >> > sr    =    44100
>> >> > ksmps     =     100
>> >> > nchnls    =    2
>> >> > 0dbfs    =    1
>> >> > gisine ftgen 0,0,2^10, 10, 1
>> >> > instr 1
>> >> >     iamp    = p4
>> >> >     icps    = cpspch(p5)
>> >> >     iatt     = 0.01
>> >> >     idec    = p3-iatt
>> >> >     aenv    linseg  0, iatt, 1, idec, 0
>> >> >     asig     poscil    iamp*aenv, icps, gisine
>> >> >
>> >> >     outs    asig, asig
>> >> >
>> >> > endin
>> >> >
>> >> > </CsInstruments>
>> >> > ; ==============================================
>> >> > <CsScore>
>> >> > #include "./definitions.inc"
>> >> > #include "./testscore.inc"
>> >> > </CsScore>
>> >> > </CsoundSynthesizer>
>> >> >
>> >> > ; definitions
>> >> >
>> >> > #define     c     #7.00#
>> >> > #define     d     #7.02#
>> >> > #define     e     #7.04#
>> >> > #define     f     #7.05#
>> >> > #define     g     #7.07#
>> >> > #define     a     #7.9#
>> >> > #define     h     #7.10#
>> >> >
>> >> > ; SCORE
>> >> > /* testscore.inc */
>> >> > i1 0 1 0.1 $c
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >> Send bugs reports to the Sourceforge bug tracker
>> >>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> >> Discussions of bugs and features can be posted here
>> >> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>> >> "unsubscribe
>> >> csound"
>> >>
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-03-23 17:25
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
I found the problem.
I had to use the "new parser" in csoundqt (don't know why).

2013/3/23 Stefan Thomas <kontrapunktstefan@gmail.com>
This makes no difference.
I've read in the list, that including a file, where score macros are defined, is a problem.


2013/3/23 Steven Yi <stevenyi@gmail.com>
That doesn't seem like something that would cause a problem.  However,
could you try changing the includes to this:

#include "definitions.inc"
#include "testscore.inc"

without the ./ ?  I wonder if that would change things.

steven

On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
<kontrapunktstefan@gmail.com> wrote:
> Could it be possible that one of the reasons is caused by
>>
>> /* testscore.inc */  ?
>
>
> 2013/3/23 Steven Yi <stevenyi@gmail.com>
>>
>> Seems like maybe there is a path resolution problem for includes when
>> run within CsoundQT?  I thought Csound resolved files from the
>> location of the CSD, but maybe it's doing it from the current working
>> directory.
>>
>> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>> <kontrapunktstefan@gmail.com> wrote:
>> > It runs without includes,if everything is in one single file.
>> >
>> > 2013/3/23 Steven Yi <stevenyi@gmail.com>
>> >>
>> >> Have you tried it without the includes?  And in what way does it "not
>> >> run"?
>> >>
>> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>> >> <kontrapunktstefan@gmail.com> wrote:
>> >> > Dear community,
>> >> > the following file does not run within csoundqt.
>> >> > But I can run it, without problems, when I run it from vim.
>> >> > How can I get it working in csoundqt?
>> >> > Here are the csd-file, the definitions and the "score":
>> >> >
>> >> > <CsoundSynthesizer>
>> >> > <CsOptions>
>> >> > -odac -m0d
>> >> > </CsOptions>
>> >> > ; ==============================================
>> >> > <CsInstruments>
>> >> >
>> >> > sr    =    44100
>> >> > ksmps     =     100
>> >> > nchnls    =    2
>> >> > 0dbfs    =    1
>> >> > gisine ftgen 0,0,2^10, 10, 1
>> >> > instr 1
>> >> >     iamp    = p4
>> >> >     icps    = cpspch(p5)
>> >> >     iatt     = 0.01
>> >> >     idec    = p3-iatt
>> >> >     aenv    linseg  0, iatt, 1, idec, 0
>> >> >     asig     poscil    iamp*aenv, icps, gisine
>> >> >
>> >> >     outs    asig, asig
>> >> >
>> >> > endin
>> >> >
>> >> > </CsInstruments>
>> >> > ; ==============================================
>> >> > <CsScore>
>> >> > #include "./definitions.inc"
>> >> > #include "./testscore.inc"
>> >> > </CsScore>
>> >> > </CsoundSynthesizer>
>> >> >
>> >> > ; definitions
>> >> >
>> >> > #define     c     #7.00#
>> >> > #define     d     #7.02#
>> >> > #define     e     #7.04#
>> >> > #define     f     #7.05#
>> >> > #define     g     #7.07#
>> >> > #define     a     #7.9#
>> >> > #define     h     #7.10#
>> >> >
>> >> > ; SCORE
>> >> > /* testscore.inc */
>> >> > i1 0 1 0.1 $c
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >> Send bugs reports to the Sourceforge bug tracker
>> >>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> >> Discussions of bugs and features can be posted here
>> >> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>> >> "unsubscribe
>> >> csound"
>> >>
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




Date2013-03-23 17:27
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
But, it works only in csoundqt when I click "Run in Terminal".
Clicking "Run" doesn't work.

2013/3/23 Stefan Thomas <kontrapunktstefan@gmail.com>
This makes no difference.
I've read in the list, that including a file, where score macros are defined, is a problem.


2013/3/23 Steven Yi <stevenyi@gmail.com>
That doesn't seem like something that would cause a problem.  However,
could you try changing the includes to this:

#include "definitions.inc"
#include "testscore.inc"

without the ./ ?  I wonder if that would change things.

steven

On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
<kontrapunktstefan@gmail.com> wrote:
> Could it be possible that one of the reasons is caused by
>>
>> /* testscore.inc */  ?
>
>
> 2013/3/23 Steven Yi <stevenyi@gmail.com>
>>
>> Seems like maybe there is a path resolution problem for includes when
>> run within CsoundQT?  I thought Csound resolved files from the
>> location of the CSD, but maybe it's doing it from the current working
>> directory.
>>
>> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>> <kontrapunktstefan@gmail.com> wrote:
>> > It runs without includes,if everything is in one single file.
>> >
>> > 2013/3/23 Steven Yi <stevenyi@gmail.com>
>> >>
>> >> Have you tried it without the includes?  And in what way does it "not
>> >> run"?
>> >>
>> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>> >> <kontrapunktstefan@gmail.com> wrote:
>> >> > Dear community,
>> >> > the following file does not run within csoundqt.
>> >> > But I can run it, without problems, when I run it from vim.
>> >> > How can I get it working in csoundqt?
>> >> > Here are the csd-file, the definitions and the "score":
>> >> >
>> >> > <CsoundSynthesizer>
>> >> > <CsOptions>
>> >> > -odac -m0d
>> >> > </CsOptions>
>> >> > ; ==============================================
>> >> > <CsInstruments>
>> >> >
>> >> > sr    =    44100
>> >> > ksmps     =     100
>> >> > nchnls    =    2
>> >> > 0dbfs    =    1
>> >> > gisine ftgen 0,0,2^10, 10, 1
>> >> > instr 1
>> >> >     iamp    = p4
>> >> >     icps    = cpspch(p5)
>> >> >     iatt     = 0.01
>> >> >     idec    = p3-iatt
>> >> >     aenv    linseg  0, iatt, 1, idec, 0
>> >> >     asig     poscil    iamp*aenv, icps, gisine
>> >> >
>> >> >     outs    asig, asig
>> >> >
>> >> > endin
>> >> >
>> >> > </CsInstruments>
>> >> > ; ==============================================
>> >> > <CsScore>
>> >> > #include "./definitions.inc"
>> >> > #include "./testscore.inc"
>> >> > </CsScore>
>> >> > </CsoundSynthesizer>
>> >> >
>> >> > ; definitions
>> >> >
>> >> > #define     c     #7.00#
>> >> > #define     d     #7.02#
>> >> > #define     e     #7.04#
>> >> > #define     f     #7.05#
>> >> > #define     g     #7.07#
>> >> > #define     a     #7.9#
>> >> > #define     h     #7.10#
>> >> >
>> >> > ; SCORE
>> >> > /* testscore.inc */
>> >> > i1 0 1 0.1 $c
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >> Send bugs reports to the Sourceforge bug tracker
>> >>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> >> Discussions of bugs and features can be posted here
>> >> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>> >> "unsubscribe
>> >> csound"
>> >>
>> >
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




Date2013-03-23 17:40
Fromjoachim heintz
SubjectRe: [Csnd] file doesn't run in csoundqt
as steven mentioned, this will be probably because of a wrong path.
i'd try to use a full path name; so something like 
"/home/stefan/csound/definitions.inc" instead of "definitions.inc" or 
"./definitions.inc". (a simple way to get the full path name is to drag 
the file in a terminal window.)

	joachim


Am 23.03.2013 18:27, schrieb Stefan Thomas:
> But, it works only in csoundqt when I click "Run in Terminal".
> Clicking "Run" doesn't work.
>
> 2013/3/23 Stefan Thomas  >
>
>     This makes no difference.
>     I've read in the list, that including a file, where score macros are
>     defined, is a problem.
>
>
>     2013/3/23 Steven Yi >
>
>         That doesn't seem like something that would cause a problem.
>           However,
>         could you try changing the includes to this:
>
>         #include "definitions.inc"
>         #include "testscore.inc"
>
>         without the ./ ?  I wonder if that would change things.
>
>         steven
>
>         On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
>                  > wrote:
>          > Could it be possible that one of the reasons is caused by
>          >>
>          >> /* testscore.inc */  ?
>          >
>          >
>          > 2013/3/23 Steven Yi          >
>          >>
>          >> Seems like maybe there is a path resolution problem for
>         includes when
>          >> run within CsoundQT?  I thought Csound resolved files from the
>          >> location of the CSD, but maybe it's doing it from the
>         current working
>          >> directory.
>          >>
>          >> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>          >>          > wrote:
>          >> > It runs without includes,if everything is in one single file.
>          >> >
>          >> > 2013/3/23 Steven Yi          >
>          >> >>
>          >> >> Have you tried it without the includes?  And in what way
>         does it "not
>          >> >> run"?
>          >> >>
>          >> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>          >> >>          > wrote:
>          >> >> > Dear community,
>          >> >> > the following file does not run within csoundqt.
>          >> >> > But I can run it, without problems, when I run it from vim.
>          >> >> > How can I get it working in csoundqt?
>          >> >> > Here are the csd-file, the definitions and the "score":
>          >> >> >
>          >> >> > 
>          >> >> > 
>          >> >> > -odac -m0d
>          >> >> > 
>          >> >> > ; ==============================================
>          >> >> > 
>          >> >> >
>          >> >> > sr    =    44100
>          >> >> > ksmps     =     100
>          >> >> > nchnls    =    2
>          >> >> > 0dbfs    =    1
>          >> >> > gisine ftgen 0,0,2^10, 10, 1
>          >> >> > instr 1
>          >> >> >     iamp    = p4
>          >> >> >     icps    = cpspch(p5)
>          >> >> >     iatt     = 0.01
>          >> >> >     idec    = p3-iatt
>          >> >> >     aenv    linseg  0, iatt, 1, idec, 0
>          >> >> >     asig     poscil    iamp*aenv, icps, gisine
>          >> >> >
>          >> >> >     outs    asig, asig
>          >> >> >
>          >> >> > endin
>          >> >> >
>          >> >> > 
>          >> >> > ; ==============================================
>          >> >> > 
>          >> >> > #include "./definitions.inc"
>          >> >> > #include "./testscore.inc"
>          >> >> > 
>          >> >> > 
>          >> >> >
>          >> >> > ; definitions
>          >> >> >
>          >> >> > #define     c     #7.00#
>          >> >> > #define     d     #7.02#
>          >> >> > #define     e     #7.04#
>          >> >> > #define     f     #7.05#
>          >> >> > #define     g     #7.07#
>          >> >> > #define     a     #7.9#
>          >> >> > #define     h     #7.10#
>          >> >> >
>          >> >> > ; SCORE
>          >> >> > /* testscore.inc */
>          >> >> > i1 0 1 0.1 $c
>          >> >> >
>          >> >> >
>          >> >> >
>          >> >> >
>          >> >> >
>          >> >>
>          >> >>
>          >> >> Send bugs reports to the Sourceforge bug tracker
>          >> >> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>          >> >> Discussions of bugs and features can be posted here
>          >> >> To unsubscribe, send email sympa@lists.bath.ac.uk
>          with body
>          >> >> "unsubscribe
>          >> >> csound"
>          >> >>
>          >> >
>          >>
>          >>
>          >> Send bugs reports to the Sourceforge bug tracker
>          >> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>          >> Discussions of bugs and features can be posted here
>          >> To unsubscribe, send email sympa@lists.bath.ac.uk
>          with body "unsubscribe
>          >> csound"
>          >>
>          >
>
>
>         Send bugs reports to the Sourceforge bug tracker
>         https://sourceforge.net/tracker/?group_id=81968&atid=564599
>         Discussions of bugs and features can be posted here
>         To unsubscribe, send email sympa@lists.bath.ac.uk
>          with body "unsubscribe csound"
>
>
>

Date2013-03-23 17:43
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
No, using the full path doesn't change anything.

2013/3/23 joachim heintz <jh@joachimheintz.de>
as steven mentioned, this will be probably because of a wrong path.
i'd try to use a full path name; so something like "/home/stefan/csound/definitions.inc" instead of "definitions.inc" or "./definitions.inc". (a simple way to get the full path name is to drag the file in a terminal window.)

        joachim


Am 23.03.2013 18:27, schrieb Stefan Thomas:
But, it works only in csoundqt when I click "Run in Terminal".
Clicking "Run" doesn't work.

2013/3/23 Stefan Thomas <kontrapunktstefan@gmail.com
<mailto:kontrapunktstefan@gmail.com>>


    This makes no difference.
    I've read in the list, that including a file, where score macros are
    defined, is a problem.


    2013/3/23 Steven Yi <stevenyi@gmail.com <mailto:stevenyi@gmail.com>>


        That doesn't seem like something that would cause a problem.
          However,
        could you try changing the includes to this:

        #include "definitions.inc"
        #include "testscore.inc"

        without the ./ ?  I wonder if that would change things.

        steven

        On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
        <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>> wrote:
         > Could it be possible that one of the reasons is caused by
         >>
         >> /* testscore.inc */  ?
         >
         >
         > 2013/3/23 Steven Yi <stevenyi@gmail.com
        <mailto:stevenyi@gmail.com>>

         >>
         >> Seems like maybe there is a path resolution problem for
        includes when
         >> run within CsoundQT?  I thought Csound resolved files from the
         >> location of the CSD, but maybe it's doing it from the
        current working
         >> directory.
         >>
         >> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
         >> <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>> wrote:
         >> > It runs without includes,if everything is in one single file.
         >> >
         >> > 2013/3/23 Steven Yi <stevenyi@gmail.com
        <mailto:stevenyi@gmail.com>>

         >> >>
         >> >> Have you tried it without the includes?  And in what way
        does it "not
         >> >> run"?
         >> >>
         >> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
         >> >> <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>> wrote:
         >> >> > Dear community,
         >> >> > the following file does not run within csoundqt.
         >> >> > But I can run it, without problems, when I run it from vim.
         >> >> > How can I get it working in csoundqt?
         >> >> > Here are the csd-file, the definitions and the "score":
         >> >> >
         >> >> > <CsoundSynthesizer>
         >> >> > <CsOptions>
         >> >> > -odac -m0d
         >> >> > </CsOptions>
         >> >> > ; ==============================================
         >> >> > <CsInstruments>
         >> >> >
         >> >> > sr    =    44100
         >> >> > ksmps     =     100
         >> >> > nchnls    =    2
         >> >> > 0dbfs    =    1
         >> >> > gisine ftgen 0,0,2^10, 10, 1
         >> >> > instr 1
         >> >> >     iamp    = p4
         >> >> >     icps    = cpspch(p5)
         >> >> >     iatt     = 0.01
         >> >> >     idec    = p3-iatt
         >> >> >     aenv    linseg  0, iatt, 1, idec, 0
         >> >> >     asig     poscil    iamp*aenv, icps, gisine
         >> >> >
         >> >> >     outs    asig, asig
         >> >> >
         >> >> > endin
         >> >> >
         >> >> > </CsInstruments>
         >> >> > ; ==============================================
         >> >> > <CsScore>
         >> >> > #include "./definitions.inc"
         >> >> > #include "./testscore.inc"
         >> >> > </CsScore>
         >> >> > </CsoundSynthesizer>
         >> >> >
         >> >> > ; definitions
         >> >> >
         >> >> > #define     c     #7.00#
         >> >> > #define     d     #7.02#
         >> >> > #define     e     #7.04#
         >> >> > #define     f     #7.05#
         >> >> > #define     g     #7.07#
         >> >> > #define     a     #7.9#
         >> >> > #define     h     #7.10#
         >> >> >
         >> >> > ; SCORE
         >> >> > /* testscore.inc */
         >> >> > i1 0 1 0.1 $c
         >> >> >
         >> >> >
         >> >> >
         >> >> >
         >> >> >
         >> >>
         >> >>
         >> >> Send bugs reports to the Sourceforge bug tracker
         >> >> https://sourceforge.net/tracker/?group_id=81968&atid=564599
         >> >> Discussions of bugs and features can be posted here
         >> >> To unsubscribe, send email sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk> with body

         >> >> "unsubscribe
         >> >> csound"
         >> >>
         >> >
         >>
         >>
         >> Send bugs reports to the Sourceforge bug tracker
         >> https://sourceforge.net/tracker/?group_id=81968&atid=564599
         >> Discussions of bugs and features can be posted here
         >> To unsubscribe, send email sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk> with body "unsubscribe

         >> csound"
         >>
         >


        Send bugs reports to the Sourceforge bug tracker
        https://sourceforge.net/tracker/?group_id=81968&atid=564599
        Discussions of bugs and features can be posted here
        To unsubscribe, send email sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk> with body "unsubscribe csound"





Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-03-23 17:47
Fromjoachim heintz
SubjectRe: [Csnd] file doesn't run in csoundqt
and what is the error message?

Am 23.03.2013 18:43, schrieb Stefan Thomas:
> No, using the full path doesn't change anything.
>
> 2013/3/23 joachim heintz >
>
>     as steven mentioned, this will be probably because of a wrong path.
>     i'd try to use a full path name; so something like
>     "/home/stefan/csound/__definitions.inc" instead of "definitions.inc"
>     or "./definitions.inc". (a simple way to get the full path name is
>     to drag the file in a terminal window.)
>
>              joachim
>
>
>     Am 23.03.2013 18:27, schrieb Stefan Thomas:
>
>         But, it works only in csoundqt when I click "Run in Terminal".
>         Clicking "Run" doesn't work.
>
>         2013/3/23 Stefan Thomas          
>                  >>
>
>
>              This makes no difference.
>              I've read in the list, that including a file, where score
>         macros are
>              defined, is a problem.
>
>
>              2013/3/23 Steven Yi                    >>
>
>
>                  That doesn't seem like something that would cause a
>         problem.
>                    However,
>                  could you try changing the includes to this:
>
>                  #include "definitions.inc"
>                  #include "testscore.inc"
>
>                  without the ./ ?  I wonder if that would change things.
>
>                  steven
>
>                  On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
>                           
>                           >> wrote:
>                   > Could it be possible that one of the reasons is
>         caused by
>                   >>
>                   >> /* testscore.inc */  ?
>                   >
>                   >
>                   > 2013/3/23 Steven Yi          
>                  >>
>
>                   >>
>                   >> Seems like maybe there is a path resolution problem for
>                  includes when
>                   >> run within CsoundQT?  I thought Csound resolved
>         files from the
>                   >> location of the CSD, but maybe it's doing it from the
>                  current working
>                   >> directory.
>                   >>
>                   >> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
>                   >>          
>                           >> wrote:
>                   >> > It runs without includes,if everything is in one
>         single file.
>                   >> >
>                   >> > 2013/3/23 Steven Yi          
>                  >>
>
>                   >> >>
>                   >> >> Have you tried it without the includes?  And in
>         what way
>                  does it "not
>                   >> >> run"?
>                   >> >>
>                   >> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
>                   >> >>          
>                           >> wrote:
>                   >> >> > Dear community,
>                   >> >> > the following file does not run within csoundqt.
>                   >> >> > But I can run it, without problems, when I run
>         it from vim.
>                   >> >> > How can I get it working in csoundqt?
>                   >> >> > Here are the csd-file, the definitions and the
>         "score":
>                   >> >> >
>                   >> >> > 
>                   >> >> > 
>                   >> >> > -odac -m0d
>                   >> >> > 
>                   >> >> > ; ==============================__================
>                   >> >> > 
>                   >> >> >
>                   >> >> > sr    =    44100
>                   >> >> > ksmps     =     100
>                   >> >> > nchnls    =    2
>                   >> >> > 0dbfs    =    1
>                   >> >> > gisine ftgen 0,0,2^10, 10, 1
>                   >> >> > instr 1
>                   >> >> >     iamp    = p4
>                   >> >> >     icps    = cpspch(p5)
>                   >> >> >     iatt     = 0.01
>                   >> >> >     idec    = p3-iatt
>                   >> >> >     aenv    linseg  0, iatt, 1, idec, 0
>                   >> >> >     asig     poscil    iamp*aenv, icps, gisine
>                   >> >> >
>                   >> >> >     outs    asig, asig
>                   >> >> >
>                   >> >> > endin
>                   >> >> >
>                   >> >> > 
>                   >> >> > ; ==============================__================
>                   >> >> > 
>                   >> >> > #include "./definitions.inc"
>                   >> >> > #include "./testscore.inc"
>                   >> >> > 
>                   >> >> > 
>                   >> >> >
>                   >> >> > ; definitions
>                   >> >> >
>                   >> >> > #define     c     #7.00#
>                   >> >> > #define     d     #7.02#
>                   >> >> > #define     e     #7.04#
>                   >> >> > #define     f     #7.05#
>                   >> >> > #define     g     #7.07#
>                   >> >> > #define     a     #7.9#
>                   >> >> > #define     h     #7.10#
>                   >> >> >
>                   >> >> > ; SCORE
>                   >> >> > /* testscore.inc */
>                   >> >> > i1 0 1 0.1 $c
>                   >> >> >
>                   >> >> >
>                   >> >> >
>                   >> >> >
>                   >> >> >
>                   >> >>
>                   >> >>
>                   >> >> Send bugs reports to the Sourceforge bug tracker
>                   >> >>
>         https://sourceforge.net/__tracker/?group_id=81968&atid=__564599
>         
>                   >> >> Discussions of bugs and features can be posted here
>                   >> >> To unsubscribe, send email
>         sympa@lists.bath.ac.uk 
>                           __> with body
>
>                   >> >> "unsubscribe
>                   >> >> csound"
>                   >> >>
>                   >> >
>                   >>
>                   >>
>                   >> Send bugs reports to the Sourceforge bug tracker
>                   >>
>         https://sourceforge.net/__tracker/?group_id=81968&atid=__564599
>         
>                   >> Discussions of bugs and features can be posted here
>                   >> To unsubscribe, send email sympa@lists.bath.ac.uk
>         
>                           __> with body "unsubscribe
>
>                   >> csound"
>                   >>
>                   >
>
>
>                  Send bugs reports to the Sourceforge bug tracker
>         https://sourceforge.net/__tracker/?group_id=81968&atid=__564599
>         
>                  Discussions of bugs and features can be posted here
>                  To unsubscribe, send email sympa@lists.bath.ac.uk
>         
>                           __> with body "unsubscribe csound"
>
>
>
>
>
>     Send bugs reports to the Sourceforge bug tracker
>     https://sourceforge.net/__tracker/?group_id=81968&atid=__564599
>     
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk
>      with body "unsubscribe csound"
>
>

Date2013-03-23 17:59
FromStefan Thomas
SubjectRe: [Csnd] file doesn't run in csoundqt
I have to admit that the here quoted file works fine, when running in csoundqt.
I have problems with another file, which is larger and more complicated.
It runs without problems from vim, but not from csoundqt, and it has to do with the macros, definitely.


2013/3/23 joachim heintz <jh@joachimheintz.de>
and what is the error message?

Am 23.03.2013 18:43, schrieb Stefan Thomas:
No, using the full path doesn't change anything.

2013/3/23 joachim heintz <jh@joachimheintz.de <mailto:jh@joachimheintz.de>>


    as steven mentioned, this will be probably because of a wrong path.
    i'd try to use a full path name; so something like
    "/home/stefan/csound/__definitions.inc" instead of "definitions.inc"

    or "./definitions.inc". (a simple way to get the full path name is
    to drag the file in a terminal window.)

             joachim


    Am 23.03.2013 18:27, schrieb Stefan Thomas:

        But, it works only in csoundqt when I click "Run in Terminal".
        Clicking "Run" doesn't work.

        2013/3/23 Stefan Thomas <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>
        <mailto:kontrapunktstefan@__gmail.com

        <mailto:kontrapunktstefan@gmail.com>>>


             This makes no difference.
             I've read in the list, that including a file, where score
        macros are
             defined, is a problem.


             2013/3/23 Steven Yi <stevenyi@gmail.com
        <mailto:stevenyi@gmail.com> <mailto:stevenyi@gmail.com

        <mailto:stevenyi@gmail.com>>>


                 That doesn't seem like something that would cause a
        problem.
                   However,
                 could you try changing the includes to this:

                 #include "definitions.inc"
                 #include "testscore.inc"

                 without the ./ ?  I wonder if that would change things.

                 steven

                 On Sat, Mar 23, 2013 at 5:03 PM, Stefan Thomas
                 <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>
                 <mailto:kontrapunktstefan@__gmail.com

        <mailto:kontrapunktstefan@gmail.com>>> wrote:
                  > Could it be possible that one of the reasons is
        caused by
                  >>
                  >> /* testscore.inc */  ?
                  >
                  >
                  > 2013/3/23 Steven Yi <stevenyi@gmail.com
        <mailto:stevenyi@gmail.com>
                 <mailto:stevenyi@gmail.com <mailto:stevenyi@gmail.com>>>


                  >>
                  >> Seems like maybe there is a path resolution problem for
                 includes when
                  >> run within CsoundQT?  I thought Csound resolved
        files from the
                  >> location of the CSD, but maybe it's doing it from the
                 current working
                  >> directory.
                  >>
                  >> On Sat, Mar 23, 2013 at 3:01 PM, Stefan Thomas
                  >> <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>
                 <mailto:kontrapunktstefan@__gmail.com

        <mailto:kontrapunktstefan@gmail.com>>> wrote:
                  >> > It runs without includes,if everything is in one
        single file.
                  >> >
                  >> > 2013/3/23 Steven Yi <stevenyi@gmail.com
        <mailto:stevenyi@gmail.com>
                 <mailto:stevenyi@gmail.com <mailto:stevenyi@gmail.com>>>


                  >> >>
                  >> >> Have you tried it without the includes?  And in
        what way
                 does it "not
                  >> >> run"?
                  >> >>
                  >> >> On Sat, Mar 23, 2013 at 2:56 PM, Stefan Thomas
                  >> >> <kontrapunktstefan@gmail.com
        <mailto:kontrapunktstefan@gmail.com>
                 <mailto:kontrapunktstefan@__gmail.com

        <mailto:kontrapunktstefan@gmail.com>>> wrote:
                  >> >> > Dear community,
                  >> >> > the following file does not run within csoundqt.
                  >> >> > But I can run it, without problems, when I run
        it from vim.
                  >> >> > How can I get it working in csoundqt?
                  >> >> > Here are the csd-file, the definitions and the
        "score":
                  >> >> >
                  >> >> > <CsoundSynthesizer>
                  >> >> > <CsOptions>
                  >> >> > -odac -m0d
                  >> >> > </CsOptions>
                  >> >> > ; ==============================__================

                  >> >> > <CsInstruments>
                  >> >> >
                  >> >> > sr    =    44100
                  >> >> > ksmps     =     100
                  >> >> > nchnls    =    2
                  >> >> > 0dbfs    =    1
                  >> >> > gisine ftgen 0,0,2^10, 10, 1
                  >> >> > instr 1
                  >> >> >     iamp    = p4
                  >> >> >     icps    = cpspch(p5)
                  >> >> >     iatt     = 0.01
                  >> >> >     idec    = p3-iatt
                  >> >> >     aenv    linseg  0, iatt, 1, idec, 0
                  >> >> >     asig     poscil    iamp*aenv, icps, gisine
                  >> >> >
                  >> >> >     outs    asig, asig
                  >> >> >
                  >> >> > endin
                  >> >> >
                  >> >> > </CsInstruments>
                  >> >> > ; ==============================__================

                  >> >> > <CsScore>
                  >> >> > #include "./definitions.inc"
                  >> >> > #include "./testscore.inc"
                  >> >> > </CsScore>
                  >> >> > </CsoundSynthesizer>
                  >> >> >
                  >> >> > ; definitions
                  >> >> >
                  >> >> > #define     c     #7.00#
                  >> >> > #define     d     #7.02#
                  >> >> > #define     e     #7.04#
                  >> >> > #define     f     #7.05#
                  >> >> > #define     g     #7.07#
                  >> >> > #define     a     #7.9#
                  >> >> > #define     h     #7.10#
                  >> >> >
                  >> >> > ; SCORE
                  >> >> > /* testscore.inc */
                  >> >> > i1 0 1 0.1 $c
                  >> >> >
                  >> >> >
                  >> >> >
                  >> >> >
                  >> >> >
                  >> >>
                  >> >>
                  >> >> Send bugs reports to the Sourceforge bug tracker
                  >> >>
        https://sourceforge.net/__tracker/?group_id=81968&atid=__564599

        <https://sourceforge.net/tracker/?group_id=81968&atid=564599>
                  >> >> Discussions of bugs and features can be posted here
                  >> >> To unsubscribe, send email
        sympa@lists.bath.ac.uk <mailto:sympa@lists.bath.ac.uk>
                 <mailto:sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk>__> with body


                  >> >> "unsubscribe
                  >> >> csound"
                  >> >>
                  >> >
                  >>
                  >>
                  >> Send bugs reports to the Sourceforge bug tracker
                  >>
        https://sourceforge.net/__tracker/?group_id=81968&atid=__564599

        <https://sourceforge.net/tracker/?group_id=81968&atid=564599>
                  >> Discussions of bugs and features can be posted here
                  >> To unsubscribe, send email sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk>
                 <mailto:sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk>__> with body "unsubscribe


                  >> csound"
                  >>
                  >


                 Send bugs reports to the Sourceforge bug tracker
        https://sourceforge.net/__tracker/?group_id=81968&atid=__564599

        <https://sourceforge.net/tracker/?group_id=81968&atid=564599>
                 Discussions of bugs and features can be posted here
                 To unsubscribe, send email sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk>
                 <mailto:sympa@lists.bath.ac.uk
        <mailto:sympa@lists.bath.ac.uk>__> with body "unsubscribe csound"






    Send bugs reports to the Sourceforge bug tracker
    https://sourceforge.net/__tracker/?group_id=81968&atid=__564599

    <https://sourceforge.net/tracker/?group_id=81968&atid=564599>
    Discussions of bugs and features can be posted here
    To unsubscribe, send email sympa@lists.bath.ac.uk
    <mailto:sympa@lists.bath.ac.uk> with body "unsubscribe csound"




Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"